Skip to content

Commit 8010503

Browse files
committed
update
1 parent 1c8f0f8 commit 8010503

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

dist/vue-scroll-list.common.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ var component = {
3030

3131
this.$emit('scrolling', event);
3232

33-
this.enabled ? this.updateZone(scrollTop) : this.updateZoneNormal(scrollTop);
33+
this.enabled ? this.updateZone(scrollTop) : this.updateZoneNormally(scrollTop);
3434
},
35-
updateZoneNormal: function updateZoneNormal(offset) {
35+
updateZoneNormally: function updateZoneNormally(offset) {
3636
// handle the scroll event normally
3737
var scrollHeight = this.$el.scrollHeight;
3838
var clientHeight = this.$el.clientHeight;

dist/vue-scroll-list.esm.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ var component = {
2828

2929
this.$emit('scrolling', event);
3030

31-
this.enabled ? this.updateZone(scrollTop) : this.updateZoneNormal(scrollTop);
31+
this.enabled ? this.updateZone(scrollTop) : this.updateZoneNormally(scrollTop);
3232
},
33-
updateZoneNormal: function updateZoneNormal(offset) {
33+
updateZoneNormally: function updateZoneNormally(offset) {
3434
// handle the scroll event normally
3535
var scrollHeight = this.$el.scrollHeight;
3636
var clientHeight = this.$el.clientHeight;

dist/vue-scroll-list.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ var component = {
3434

3535
this.$emit('scrolling', event);
3636

37-
this.enabled ? this.updateZone(scrollTop) : this.updateZoneNormal(scrollTop);
37+
this.enabled ? this.updateZone(scrollTop) : this.updateZoneNormally(scrollTop);
3838
},
39-
updateZoneNormal: function updateZoneNormal(offset) {
39+
updateZoneNormally: function updateZoneNormally(offset) {
4040
// handle the scroll event normally
4141
var scrollHeight = this.$el.scrollHeight;
4242
var clientHeight = this.$el.clientHeight;

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ let component = {
2828

2929
this.$emit('scrolling', event);
3030

31-
this.enabled ? this.updateZone(scrollTop) : this.updateZoneNormal(scrollTop);
31+
this.enabled ? this.updateZone(scrollTop) : this.updateZoneNormally(scrollTop);
3232
},
33-
updateZoneNormal(offset) {
33+
updateZoneNormally(offset) {
3434
// handle the scroll event normally
3535
let scrollHeight = this.$el.scrollHeight;
3636
let clientHeight = this.$el.clientHeight;

0 commit comments

Comments
 (0)