diff options
author | redmatrix <git@macgirvin.com> | 2016-08-09 22:52:14 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-08-09 22:52:14 -0700 |
commit | de12503fadbead1722824311d0887ad65b0cb925 (patch) | |
tree | 247a02daf134199623a14bdf47cb2208c72e1bc0 /view | |
parent | 5238a27ab309c205bafad83a9ab16d2af7646d32 (diff) | |
download | volse-hubzilla-de12503fadbead1722824311d0887ad65b0cb925.tar.gz volse-hubzilla-de12503fadbead1722824311d0887ad65b0cb925.tar.bz2 volse-hubzilla-de12503fadbead1722824311d0887ad65b0cb925.zip |
allow dropping links on comments as well as posts
Diffstat (limited to 'view')
-rwxr-xr-x | view/tpl/comment_item.tpl | 2 | ||||
-rwxr-xr-x | view/tpl/jot-header.tpl | 4 |
2 files changed, 4 insertions, 2 deletions
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 @@ <input type="hidden" name="return" value="{{$return_path}}" /> <input type="hidden" name="jsreload" value="{{$jsreload}}" /> <input type="hidden" name="preview" id="comment-preview-inp-{{$id}}" value="0" /> - <textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty" name="body" onFocus="commentOpenUI(this,{{$id}});" onBlur="commentCloseUI(this,{{$id}});" >{{$comment}}</textarea> + <textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty" name="body" onFocus="commentOpenUI(this,{{$id}});" onBlur="commentCloseUI(this,{{$id}});" ondragenter="linkdropper(event);" ondragover="linkdropper(event);" ondrop="linkdrop(event);" >{{$comment}}</textarea> {{if $qcomment}} <select id="qcomment-select-{{$id}}" name="qcomment-{{$id}}" class="qcomment" onchange="qCommentInsert(this,{{$id}});" > <option value=""></option> 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); }); }); |