@@ -366,6 +366,7 @@ define([
366
366
* @private
367
367
*/
368
368
_addVarToUrl : function ( url , varName , varValue ) {
369
+ /* eslint-disable-next-line */
369
370
var re = new RegExp ( '\/(' + varName + '\/.*?\/)' ) ,
370
371
parts = url . split ( new RegExp ( '\\?' ) ) ;
371
372
@@ -392,6 +393,7 @@ define([
392
393
* @private
393
394
*/
394
395
_buildFormAndSubmit : function ( url , varName , varValue ) {
396
+ /* eslint-disable-next-line*/
395
397
var re = new RegExp ( '\/(' + varName + '\/.*?\/)' ) ,
396
398
parts = url . split ( new RegExp ( '\\?' ) ) ,
397
399
form = jQuery ( '<form></form>' ) ,
@@ -465,8 +467,8 @@ define([
465
467
*/
466
468
bindFilterFields : function ( ) {
467
469
var filters = $$ (
468
- '#' + this . containerId + ' [data-role="filter-form"] input' ,
469
- '#' + this . containerId + ' [data-role="filter-form"] select'
470
+ '#' + this . containerId + ' [data-role="filter-form"] input' ,
471
+ '#' + this . containerId + ' [data-role="filter-form"] select'
470
472
) ,
471
473
i ;
472
474
@@ -539,8 +541,8 @@ define([
539
541
*/
540
542
doFilter : function ( callback ) {
541
543
var filters = $$ (
542
- '#' + this . containerId + ' [data-role="filter-form"] input' ,
543
- '#' + this . containerId + ' [data-role="filter-form"] select'
544
+ '#' + this . containerId + ' [data-role="filter-form"] input' ,
545
+ '#' + this . containerId + ' [data-role="filter-form"] select'
544
546
) ,
545
547
elements = [ ] ,
546
548
i ;
@@ -1057,7 +1059,7 @@ define([
1057
1059
*/
1058
1060
updateCount : function ( ) {
1059
1061
var checkboxesTotal = varienStringArray . count (
1060
- this . useSelectAll ? this . getGridIds ( ) : this . getCheckboxesValuesAsString ( )
1062
+ this . useSelectAll ? this . getGridIds ( ) : this . getCheckboxesValuesAsString ( )
1061
1063
) ,
1062
1064
checkboxesChecked = varienStringArray . count ( this . checkedString ) ;
1063
1065
0 commit comments