File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -30,9 +30,9 @@ var component = {
30
30
31
31
this . $emit ( 'scrolling' , event ) ;
32
32
33
- this . enabled ? this . updateZone ( scrollTop ) : this . updateZoneNormal ( scrollTop ) ;
33
+ this . enabled ? this . updateZone ( scrollTop ) : this . updateZoneNormally ( scrollTop ) ;
34
34
} ,
35
- updateZoneNormal : function updateZoneNormal ( offset ) {
35
+ updateZoneNormally : function updateZoneNormally ( offset ) {
36
36
// handle the scroll event normally
37
37
var scrollHeight = this . $el . scrollHeight ;
38
38
var clientHeight = this . $el . clientHeight ;
Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ var component = {
28
28
29
29
this . $emit ( 'scrolling' , event ) ;
30
30
31
- this . enabled ? this . updateZone ( scrollTop ) : this . updateZoneNormal ( scrollTop ) ;
31
+ this . enabled ? this . updateZone ( scrollTop ) : this . updateZoneNormally ( scrollTop ) ;
32
32
} ,
33
- updateZoneNormal : function updateZoneNormal ( offset ) {
33
+ updateZoneNormally : function updateZoneNormally ( offset ) {
34
34
// handle the scroll event normally
35
35
var scrollHeight = this . $el . scrollHeight ;
36
36
var clientHeight = this . $el . clientHeight ;
Original file line number Diff line number Diff line change @@ -34,9 +34,9 @@ var component = {
34
34
35
35
this . $emit ( 'scrolling' , event ) ;
36
36
37
- this . enabled ? this . updateZone ( scrollTop ) : this . updateZoneNormal ( scrollTop ) ;
37
+ this . enabled ? this . updateZone ( scrollTop ) : this . updateZoneNormally ( scrollTop ) ;
38
38
} ,
39
- updateZoneNormal : function updateZoneNormal ( offset ) {
39
+ updateZoneNormally : function updateZoneNormally ( offset ) {
40
40
// handle the scroll event normally
41
41
var scrollHeight = this . $el . scrollHeight ;
42
42
var clientHeight = this . $el . clientHeight ;
Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ let component = {
28
28
29
29
this . $emit ( 'scrolling' , event ) ;
30
30
31
- this . enabled ? this . updateZone ( scrollTop ) : this . updateZoneNormal ( scrollTop ) ;
31
+ this . enabled ? this . updateZone ( scrollTop ) : this . updateZoneNormally ( scrollTop ) ;
32
32
} ,
33
- updateZoneNormal ( offset ) {
33
+ updateZoneNormally ( offset ) {
34
34
// handle the scroll event normally
35
35
let scrollHeight = this . $el . scrollHeight ;
36
36
let clientHeight = this . $el . clientHeight ;
You can’t perform that action at this time.
0 commit comments