diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/tpl/jot-header.tpl | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index 1cb774c7c..2c2b662be 100644 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -152,28 +152,28 @@ } function jotGetLink() { - textarea = document.getElementById('profile-jot-text'); - if (textarea.selectionStart || textarea.selectionStart == "0") { - var start = textarea.selectionStart; - var end = textarea.selectionEnd; - if (end > start) { - reply = prompt("{{$linkurl}}"); - if(reply && reply.length) { - textarea.value = textarea.value.substring(0, start) + "[url=" + reply + "]" + textarea.value.substring(start, end) + "[/url]" + textarea.value.substring(end, textarea.value.length); - } - } else { - reply = prompt("{{$linkurl}}"); - if(reply && reply.length) { - reply = bin2hex(reply); - $('#profile-rotator').show(); - $.get('{{$baseurl}}/linkinfo?f=&binurl=' + reply, function(data) { - addeditortext(data); + textarea = document.getElementById('profile-jot-text'); + if (textarea.selectionStart || textarea.selectionStart == "0") { + var start = textarea.selectionStart; + var end = textarea.selectionEnd; + if (end > start) { + reply = prompt("{{$linkurl}}"); + if(reply && reply.length) { + textarea.value = textarea.value.substring(0, start) + "[url=" + reply + "]" + textarea.value.substring(start, end) + "[/url]" + textarea.value.substring(end, textarea.value.length); + } + } else { + reply = prompt("{{$linkurl}}"); + if(reply && reply.length) { + reply = bin2hex(reply); + $('#profile-rotator').show(); + $.get('{{$baseurl}}/linkinfo?f=&binurl=' + reply, function(data) { + addeditortext(data); preview_post(); - $('#profile-rotator').hide(); - }); - } - } - } + $('#profile-rotator').hide(); + }); + } + } + } } function jotGetLocation() { |