File tree 1 file changed +1
-5
lines changed
1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -743,9 +743,6 @@ ionic.views.Scroll = ionic.views.View.inherit({
743
743
__resizeScrollbars : function ( ) {
744
744
var self = this ;
745
745
746
- // Bring the scrollbars in to show the content change
747
- self . __fadeScrollbars ( 'in' ) ;
748
-
749
746
// Update horiz bar
750
747
if ( self . __indicatorX ) {
751
748
var width = Math . max ( Math . round ( self . __clientWidth * self . __clientWidth / ( self . __contentWidth ) ) , 20 ) ;
@@ -1360,8 +1357,6 @@ ionic.views.Scroll = ionic.views.View.inherit({
1360
1357
1361
1358
var self = this ;
1362
1359
1363
- self . __fadeScrollbars ( 'in' ) ;
1364
-
1365
1360
// Reset interruptedAnimation flag
1366
1361
self . __interruptedAnimation = true ;
1367
1362
@@ -1604,6 +1599,7 @@ ionic.views.Scroll = ionic.views.View.inherit({
1604
1599
self . __isDragging = ( self . __enableScrollX || self . __enableScrollY ) && ( distanceX >= minimumTrackingForDrag || distanceY >= minimumTrackingForDrag ) ;
1605
1600
if ( self . __isDragging ) {
1606
1601
self . __interruptedAnimation = false ;
1602
+ self . __fadeScrollbars ( 'in' ) ;
1607
1603
}
1608
1604
1609
1605
}
You can’t perform that action at this time.
0 commit comments