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,12 +41,14 @@ tinyMCE.init({
function jotGetLink() {
reply = prompt("Please enter a link URL:");
if(reply && reply.length) {
$('#profile-rotator').show();
$.get('parse_url?url=' + reply, function(data) {
tinyMCE.execCommand('mceInsertRawHTML',false,data);
$('#profile-rotator').hide();
});
}
}
</script>