Standards
This commit is contained in:
parent
fd9c9603e4
commit
88e5e06b45
1 changed files with 21 additions and 20 deletions
|
@ -76,8 +76,7 @@ function commentClose(obj,id) {
|
||||||
function showHideCommentBox(id) {
|
function showHideCommentBox(id) {
|
||||||
if ($('#comment-edit-form-' + id).is(':visible')) {
|
if ($('#comment-edit-form-' + id).is(':visible')) {
|
||||||
$('#comment-edit-form-' + id).hide();
|
$('#comment-edit-form-' + id).hide();
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$('#comment-edit-form-' + id).show();
|
$('#comment-edit-form-' + id).show();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -162,7 +161,9 @@ function qCommentInsert(obj,id) {
|
||||||
$(obj).val('');
|
$(obj).val('');
|
||||||
}
|
}
|
||||||
|
|
||||||
function confirmDelete() { return confirm(aStr.delitem); }
|
function confirmDelete() {
|
||||||
|
return confirm(aStr.delitem);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Hide and removes an item element from the DOM after the deletion url is
|
* Hide and removes an item element from the DOM after the deletion url is
|
||||||
|
|
Loading…
Reference in a new issue