fix null return on url

This commit is contained in:
Mike Macgirvin 2010-07-22 23:21:40 -07:00
parent 7a07a2cf31
commit 25afc87368
1 changed files with 7 additions and 5 deletions

View File

@ -41,11 +41,13 @@ tinyMCE.init({
function jotGetLink() { function jotGetLink() {
reply = prompt("Please enter a link URL:"); reply = prompt("Please enter a link URL:");
$('#profile-rotator').show(); if(reply && reply.length) {
$.get('parse_url?url=' + reply, function(data) { $('#profile-rotator').show();
tinyMCE.execCommand('mceInsertRawHTML',false,data); $.get('parse_url?url=' + reply, function(data) {
$('#profile-rotator').hide(); tinyMCE.execCommand('mceInsertRawHTML',false,data);
}); $('#profile-rotator').hide();
});
}
} }