- Patch #1319420 by nod_: multiple execution of tableselect.js with nested tables.

8.0.x
Dries 2012-02-02 13:13:06 -05:00
parent f7daf3453b
commit 7500befb81
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,8 @@
Drupal.behaviors.tableSelect = {
attach: function (context, settings) {
$('table:has(th.select-all)', context).once('table-select', Drupal.tableSelect);
// Select the inner-most table in case of nested tables.
$('th.select-all', context).closest('table').once('table-select', Drupal.tableSelect);
}
};