Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
ustbhuangyi committed Jan 21, 2019
1 parent 5da9b38 commit 809e9ad
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions dist/bscroll.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* better-normal-scroll v1.14.0
* better-normal-scroll v1.14.1
* (c) 2016-2019 ustbhuangyi
* Released under the MIT License.
*/
Expand Down Expand Up @@ -2082,8 +2082,8 @@ function wheelMixin(BScroll) {
var index = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;

if (this.options.wheel) {
this.y = -index * this.itemHeight;
this.scrollTo(0, this.y);
var y = -index * this.itemHeight;
this.scrollTo(0, y);
}
};

Expand Down Expand Up @@ -3391,6 +3391,6 @@ mouseWheelMixin(BScroll);
zoomMixin(BScroll);
infiniteMixin(BScroll);

BScroll.Version = '1.14.0';
BScroll.Version = '1.14.1';

export default BScroll;
8 changes: 4 additions & 4 deletions dist/bscroll.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* better-normal-scroll v1.14.0
* better-normal-scroll v1.14.1
* (c) 2016-2019 ustbhuangyi
* Released under the MIT License.
*/
Expand Down Expand Up @@ -2088,8 +2088,8 @@ function wheelMixin(BScroll) {
var index = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;

if (this.options.wheel) {
this.y = -index * this.itemHeight;
this.scrollTo(0, this.y);
var y = -index * this.itemHeight;
this.scrollTo(0, y);
}
};

Expand Down Expand Up @@ -3397,7 +3397,7 @@ mouseWheelMixin(BScroll);
zoomMixin(BScroll);
infiniteMixin(BScroll);

BScroll.Version = '1.14.0';
BScroll.Version = '1.14.1';

return BScroll;

Expand Down
4 changes: 2 additions & 2 deletions dist/bscroll.min.js

Large diffs are not rendered by default.

0 comments on commit 809e9ad

Please sign in to comment.