Skip to content

Commit

Permalink
script.js: added missing function documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
lpaulsen93 committed Sep 16, 2018
1 parent bdeb2ff commit df43970
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions script.js
Expand Up @@ -129,6 +129,9 @@ var blogtng = {
}
},

/**
* Attach and handle the check-all checkbox.
*/
insert_checkall_checkbox: function() {
if(jQuery('#blogtng__admin').length == 0) return;
var th = jQuery('#blogtng__admin_checkall_th').get(0);
Expand All @@ -142,6 +145,9 @@ var blogtng = {
}
},

/**
* Set all checkboxes to checked.
*/
checkall: function() {
objs = jQuery('input.comment_cid');
if(objs) {
Expand Down

0 comments on commit df43970

Please sign in to comment.