summaryrefslogtreecommitdiff
path: root/misc/tableselect.js
diff options
context:
space:
mode:
Diffstat (limited to 'misc/tableselect.js')
-rw-r--r--misc/tableselect.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/misc/tableselect.js b/misc/tableselect.js
index 8f0cd9750..09bac1390 100644
--- a/misc/tableselect.js
+++ b/misc/tableselect.js
@@ -57,6 +57,10 @@ Drupal.tableSelect = function () {
// Keep track of the last checked checkbox.
lastChecked = e.target;
});
+
+ // If all checkboxes are checked on page load, make sure the select-all one
+ // is checked too, otherwise keep unchecked.
+ updateSelectAll((checkboxes.length == $(checkboxes).filter(':checked').length));
};
Drupal.tableSelectRange = function (from, to, state) {