diff --git a/view/tpl/comment_item.tpl b/view/tpl/comment_item.tpl index 1d8bd671d..74917d089 100755 --- a/view/tpl/comment_item.tpl +++ b/view/tpl/comment_item.tpl @@ -10,7 +10,7 @@ - {{$comment}} + {{$comment}} {{if $qcomment}} diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index 85ce9dad8..9b00b25d3 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -269,13 +269,15 @@ function enableOnUser(){ function linkdrop(event) { var reply = event.dataTransfer.getData("text/uri-list"); event.preventDefault(); + var editwin = '#' + event.target.id; if(reply && reply.length) { reply = bin2hex(reply); $('#profile-rotator').spin('tiny'); $.get('{{$baseurl}}/linkinfo?f=&binurl=' + reply, function(data) { if (!editor) $("#profile-jot-text").val(""); initEditor(function(){ - addeditortext(data); + $(editwin).val( $(editwin).val() + data ); + // addeditortext(data); $('#profile-rotator').spin(false); }); });