@@ -422,7 +422,7 @@ describe('uiScroll', function () {
422
422
function ( viewport , scope ) {
423
423
424
424
scope . adapter . applyUpdates (
425
- function ( item , scope ) {
425
+ function ( item ) {
426
426
if ( item === 'one' )
427
427
return [ ] ;
428
428
}
@@ -451,7 +451,7 @@ describe('uiScroll', function () {
451
451
function ( viewport , scope ) {
452
452
453
453
scope . adapter . applyUpdates (
454
- function ( item , scope ) {
454
+ function ( item ) {
455
455
if ( item === 'two' )
456
456
return [ ] ;
457
457
}
@@ -480,7 +480,7 @@ describe('uiScroll', function () {
480
480
function ( viewport , scope ) {
481
481
482
482
scope . adapter . applyUpdates (
483
- function ( item , scope ) {
483
+ function ( item ) {
484
484
if ( item === 'three' )
485
485
return [ ] ;
486
486
}
@@ -509,7 +509,7 @@ describe('uiScroll', function () {
509
509
function ( viewport , scope , $timeout ) {
510
510
511
511
scope . adapter . applyUpdates (
512
- function ( item , scope ) {
512
+ function ( item ) {
513
513
if ( item === 'one' )
514
514
return [ 'before one' , item ] ;
515
515
}
@@ -546,7 +546,7 @@ describe('uiScroll', function () {
546
546
function ( viewport , scope ) {
547
547
548
548
scope . adapter . applyUpdates (
549
- function ( item , scope ) {
549
+ function ( item ) {
550
550
if ( item === 'one' )
551
551
return [ item , 'after one' ] ;
552
552
}
@@ -583,7 +583,7 @@ describe('uiScroll', function () {
583
583
function ( viewport , scope ) {
584
584
585
585
scope . adapter . applyUpdates (
586
- function ( item , scope ) {
586
+ function ( item ) {
587
587
if ( item === 'two' )
588
588
return [ 'before two' , item ] ;
589
589
}
@@ -620,7 +620,7 @@ describe('uiScroll', function () {
620
620
function ( viewport , scope ) {
621
621
622
622
scope . adapter . applyUpdates (
623
- function ( item , scope ) {
623
+ function ( item ) {
624
624
if ( item === 'three' )
625
625
return [ item , 'after three' ] ;
626
626
}
0 commit comments