diff options
author | redmatrix <mike@macgirvin.com> | 2016-09-05 17:08:48 -0700 |
---|---|---|
committer | redmatrix <mike@macgirvin.com> | 2016-09-05 17:08:48 -0700 |
commit | 1639f5b83d39be33ccbf07ac29b7a86cc11a4d14 (patch) | |
tree | d5d036de0bc9ae3c978bd972c702ea84e06d7a5c /view/tpl/comment_item.tpl | |
parent | aaa7d6a0ecb5b4b86acfe03155affc538f450fb5 (diff) | |
download | volse-hubzilla-1639f5b83d39be33ccbf07ac29b7a86cc11a4d14.tar.gz volse-hubzilla-1639f5b83d39be33ccbf07ac29b7a86cc11a4d14.tar.bz2 volse-hubzilla-1639f5b83d39be33ccbf07ac29b7a86cc11a4d14.zip |
add links to zcards #500 ; also provide drag/drop highlighting of comment regions when a link is being dragged over them
Diffstat (limited to 'view/tpl/comment_item.tpl')
-rwxr-xr-x | view/tpl/comment_item.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/comment_item.tpl b/view/tpl/comment_item.tpl index 5920efafa..a98b9e5eb 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}});" ondragenter="linkdropper(event);" ondragover="linkdropper(event);" ondrop="linkdrop(event);" >{{$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);" ondragleave="linkdropexit(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> |