possible fix for empty commentbox colapsing on tool-button click
This commit is contained in:
@@ -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() {
|
||||
|
Reference in New Issue
Block a user