possible fix for empty commentbox colapsing on tool-button click

This commit is contained in:
marijus 2014-05-24 17:50:09 +02:00
parent 1879a8b747
commit bf88720fae
3 changed files with 20 additions and 13 deletions

View File

@ -13,7 +13,6 @@
}
function commentClose(obj,id) {
//$(document).on('click', function() {
if(obj.value == '') {
obj.value = aStr['comment'];
$("#comment-edit-text-" + id).removeClass("comment-edit-text-full");
@ -23,8 +22,6 @@
return true;
}
return false;
//});
}
function showHideCommentBox(id) {

View File

@ -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() {

View File

@ -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>