Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / misc / tableselect.js
index 677f72d33436fbe3b30061bcca4c49ea2c556423..388700dd77f3c28116af3bd2e09efaf791700dad 100644 (file)
     var mode = from.rowIndex > to.rowIndex ? 'previousSibling' : 'nextSibling';
 
     for (var i = from[mode]; i; i = i[mode]) {
-      var $i;
+      var $i = $(i);
 
       if (i.nodeType !== 1) {
         continue;
       }
-      $i = $(i);
 
       $i.toggleClass('selected', state);
       $i.find('input[type="checkbox"]').prop('checked', state);