Skip to content

Commit a1e3de5

Browse files
committed
Merge branch 'develop'
2 parents 9076d54 + b3072b6 commit a1e3de5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/js/scrollbox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,7 @@ var Scrollbox = function ($) {
837837
if (!$.easing.momentum) {
838838
// easeOutExpo
839839
$.easing.momentum = function (x, t, b, c, d) {
840-
/* eslint eqeqeq: "off" */
840+
/* eslint eqeqeq: 0 */
841841
return t == d ? b + c : c * (-Math.pow(2, -10 * t / d) + 1) + b;
842842
};
843843
}

src/js/scrollbox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ const Scrollbox = (($) => {
823823
if (!$.easing.momentum) {
824824
// easeOutExpo
825825
$.easing.momentum = (x, t, b, c, d) => {
826-
/* eslint eqeqeq: "off" */
826+
/* eslint eqeqeq: 0 */
827827
return t == d ? b + c : c * (- Math.pow(2, -10 * t / d) + 1) + b;
828828
};
829829
}

0 commit comments

Comments
 (0)