Skip to content
This repository was archived by the owner on Jan 4, 2021. It is now read-only.

Commit ddd38f3

Browse files
author
Francois-Xavier Gentilhomme
committed
[DEV] Remove alone pointerId in _attachListeners
1 parent 3222ece commit ddd38f3

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

dist/myscript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14483,7 +14483,7 @@ MyScript = {
1448314483
element.addEventListener('pointerdown', function (e) {
1448414484
if (!pointerId) {
1448514485
pointerId = e.pointerId;
14486-
e.preventDefault();pointerId
14486+
e.preventDefault();
1448714487
var coord = _getCoordinates(e, element);
1448814488
self._down(coord.x, coord.y, coord.t);
1448914489
}

dist/myscript.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/myscript.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/myscript.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/inkPaper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -994,7 +994,7 @@
994994
element.addEventListener('pointerdown', function (e) {
995995
if (!pointerId) {
996996
pointerId = e.pointerId;
997-
e.preventDefault();pointerId
997+
e.preventDefault();
998998
var coord = _getCoordinates(e, element);
999999
self._down(coord.x, coord.y, coord.t);
10001000
}

0 commit comments

Comments
 (0)