diff options
author | Alex Pott <alex.a.pott@googlemail.com> | 2015-04-19 17:30:43 +0200 |
---|---|---|
committer | Alex Pott <alex.a.pott@googlemail.com> | 2015-04-19 17:30:43 +0200 |
commit | 49a1b846ec4b8664cadb52afcc15aadc9e295050 (patch) | |
tree | eef94487c1364f108cce77a37b7b3b9b2f79816a /core/modules/system/system.modules.js | |
parent | 6cd48a6d5d2295729a1f237bf297e0bb83926771 (diff) | |
download | drupal-49a1b846ec4b8664cadb52afcc15aadc9e295050.tar.gz drupal-49a1b846ec4b8664cadb52afcc15aadc9e295050.zip |
Issue #2461531 by nod_, lauriii, pguillard: ESlint 0.18.0 compatibility and new rule
Diffstat (limited to 'core/modules/system/system.modules.js')
-rw-r--r-- | core/modules/system/system.modules.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/modules/system/system.modules.js b/core/modules/system/system.modules.js index 4964a1a8825..45ddf3bf4ea 100644 --- a/core/modules/system/system.modules.js +++ b/core/modules/system/system.modules.js @@ -16,7 +16,9 @@ attach: function (context, settings) { var $input = $('input.table-filter-text').once('table-filter-text'); var $table = $($input.attr('data-table')); - var $rowsAndDetails, $rows, $details; + var $rowsAndDetails; + var $rows; + var $details; var searching = false; function hidePackageDetails(index, element) { |