move new comment open/close js functions to core so they can be used by other themes
This commit is contained in:
@@ -1,5 +1,38 @@
|
||||
|
||||
function confirmDelete() { return confirm(aStr['delitem']); }
|
||||
|
||||
function commentOpenUI(obj,id) {
|
||||
|
||||
$(document).unbind( "click.commentOpen", handler );
|
||||
|
||||
var handler = function() {
|
||||
if(obj.value == aStr['comment']) {
|
||||
obj.value = '';
|
||||
$("#comment-edit-text-" + id).addClass("comment-edit-text-full").removeClass("comment-edit-text-empty");
|
||||
$("#comment-tools-" + id).show();
|
||||
}
|
||||
};
|
||||
|
||||
$(document).bind( "click.commentOpen", handler );
|
||||
|
||||
}
|
||||
|
||||
function commentCloseUI(obj,id) {
|
||||
|
||||
$(document).unbind( "click.commentClose", handler );
|
||||
|
||||
var handler = 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).bind( "click.commentClose", handler );
|
||||
|
||||
}
|
||||
|
||||
function commentOpen(obj,id) {
|
||||
if(obj.value == aStr['comment']) {
|
||||
obj.value = '';
|
||||
|
||||
Reference in New Issue
Block a user