Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtesaak committed Jul 10, 2018
1 parent 642bd09 commit 958a3df
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/perfect-scrollbar.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ var touch = function(i) {
speed.y = differenceY / timeGap;
startTime = currentTime;
}

console.log(e);
if (shouldPrevent(differenceX, differenceY)) {
e.preventDefault();
}
Expand Down
2 changes: 1 addition & 1 deletion dist/perfect-scrollbar.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@ var touch = function(i) {
speed.y = differenceY / timeGap;
startTime = currentTime;
}

console.log(e);
if (shouldPrevent(differenceX, differenceY)) {
e.preventDefault();
}
Expand Down
2 changes: 1 addition & 1 deletion dist/perfect-scrollbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -1045,7 +1045,7 @@ var touch = function(i) {
speed.y = differenceY / timeGap;
startTime = currentTime;
}

console.log(e);
if (shouldPrevent(differenceX, differenceY)) {
e.preventDefault();
}
Expand Down
2 changes: 1 addition & 1 deletion dist/perfect-scrollbar.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/handlers/touch.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export default function(i) {
speed.y = differenceY / timeGap;
startTime = currentTime;
}

console.log(e);
if (shouldPrevent(differenceX, differenceY)) {
e.preventDefault();
}
Expand Down

0 comments on commit 958a3df

Please sign in to comment.