aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authormarijus <mario@mariovavti.com>2014-05-24 17:50:09 +0200
committermarijus <mario@mariovavti.com>2014-05-24 17:50:09 +0200
commitbf88720fae18f0ffc2824cf94c262e5dc9c907ec (patch)
treeaf0c36ebdc6d8d1daf61d3a2ee1c3207d35df5ce /view
parent1879a8b747fb7d170d11700310a9384084b7caee (diff)
downloadvolse-hubzilla-bf88720fae18f0ffc2824cf94c262e5dc9c907ec.tar.gz
volse-hubzilla-bf88720fae18f0ffc2824cf94c262e5dc9c907ec.tar.bz2
volse-hubzilla-bf88720fae18f0ffc2824cf94c262e5dc9c907ec.zip
possible fix for empty commentbox colapsing on tool-button click
Diffstat (limited to 'view')
-rw-r--r--view/js/main.js21
-rw-r--r--view/theme/redbasic/js/redbasic.js10
-rwxr-xr-xview/tpl/comment_item.tpl2
3 files changed, 20 insertions, 13 deletions
diff --git a/view/js/main.js b/view/js/main.js
index b388ab940..2f695c77e 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -13,18 +13,15 @@
}
function commentClose(obj,id) {
- //$(document).on('click', function() {
- if(obj.value == '') {
- obj.value = aStr['comment'];
- $("#comment-edit-text-" + id).removeClass("comment-edit-text-full");
- $("#comment-edit-text-" + id).addClass("comment-edit-text-empty");
- $("#mod-cmnt-wrap-" + id).hide();
- closeMenu("comment-tools-" + id);
- return true;
- }
- return false;
- //});
-
+ if(obj.value == '') {
+ obj.value = aStr['comment'];
+ $("#comment-edit-text-" + id).removeClass("comment-edit-text-full");
+ $("#comment-edit-text-" + id).addClass("comment-edit-text-empty");
+ $("#mod-cmnt-wrap-" + id).hide();
+ closeMenu("comment-tools-" + id);
+ return true;
+ }
+ return false;
}
function showHideCommentBox(id) {
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js
index d981b0c11..d4349df61 100644
--- a/view/theme/redbasic/js/redbasic.js
+++ b/view/theme/redbasic/js/redbasic.js
@@ -1,3 +1,13 @@
+function commentCloseRed(obj,id) {
+ $(document).click(function() {
+ if(obj.value == '') {
+ obj.value = aStr['comment'];
+ $("#comment-edit-text-" + id).removeClass("comment-edit-text-full").addClass("comment-edit-text-empty");
+ $("#comment-tools-" + id).hide();
+ }
+ });
+}
+
$(document).ready(function() {
$('#expand-aside').click(function() {
diff --git a/view/tpl/comment_item.tpl b/view/tpl/comment_item.tpl
index 121cf0995..7d7b22f74 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="commentOpen(this,{{$id}});" onBlur="commentClose(this,{{$id}});" >{{$comment}}</textarea>
+ <textarea id="comment-edit-text-{{$id}}" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,{{$id}});" onBlur="commentCloseRed(this,{{$id}});" >{{$comment}}</textarea>
{{if $qcomment}}
<select id="qcomment-select-{{$id}}" name="qcomment-{{$id}}" class="qcomment" onchange="qCommentInsert(this,{{$id}});" >
<option value=""></option>