summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2011-04-10 23:51:58 +0200
committerDries Buytaert <dries@buytaert.net>2011-04-10 23:51:58 +0200
commit12b3ed9060d106e915b792bae176d6e8a484a54d (patch)
treefede1231a587b4b1bf80b1eb2804422c834e236d /misc
parentf3b693cf036eb48cd8d3080f0cd4d8806d714e21 (diff)
downloadbrdo-12b3ed9060d106e915b792bae176d6e8a484a54d.tar.gz
brdo-12b3ed9060d106e915b792bae176d6e8a484a54d.tar.bz2
- Patch #1031148 by Berdir: select-all checkbox is not added when updating a table with #ajax.
Diffstat (limited to 'misc')
-rw-r--r--misc/tableselect.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/tableselect.js b/misc/tableselect.js
index 955f199fc..a50110e94 100644
--- a/misc/tableselect.js
+++ b/misc/tableselect.js
@@ -2,7 +2,7 @@
Drupal.behaviors.tableSelect = {
attach: function (context, settings) {
- $('form table:has(th.select-all)', context).once('table-select', Drupal.tableSelect);
+ $('table:has(th.select-all)', context).once('table-select', Drupal.tableSelect);
}
};