- Patch #1031148 by Berdir: select-all checkbox is not added when updating a table with #ajax.

merge-requests/26/head
Dries Buytaert 2011-04-10 23:51:58 +02:00
parent f3b693cf03
commit 12b3ed9060
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
};