Skip to content

Commit 78d15b0

Browse files
committed
Fixed arguments
1 parent 3c52a3b commit 78d15b0

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/input/InputManager.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ var InputManager = new Class({
732732
pointer.updateMotion();
733733
});
734734

735-
this.updateInputPlugins(CONST.TOUCH_START, event.timeStamp, changed);
735+
this.updateInputPlugins(CONST.TOUCH_START, changed);
736736
},
737737

738738
/**
@@ -753,7 +753,7 @@ var InputManager = new Class({
753753
pointer.updateMotion();
754754
});
755755

756-
this.updateInputPlugins(CONST.TOUCH_MOVE, event.timeStamp, changed);
756+
this.updateInputPlugins(CONST.TOUCH_MOVE, changed);
757757
},
758758

759759
/**
@@ -774,7 +774,7 @@ var InputManager = new Class({
774774
pointer.updateMotion();
775775
});
776776

777-
this.updateInputPlugins(CONST.TOUCH_END, event.timeStamp, changed);
777+
this.updateInputPlugins(CONST.TOUCH_END, changed);
778778
},
779779

780780
/**
@@ -795,7 +795,7 @@ var InputManager = new Class({
795795
pointer.updateMotion();
796796
});
797797

798-
this.updateInputPlugins(CONST.TOUCH_CANCEL, event.timeStamp, changed);
798+
this.updateInputPlugins(CONST.TOUCH_CANCEL, changed);
799799
},
800800

801801
/**
@@ -813,7 +813,7 @@ var InputManager = new Class({
813813

814814
this.mousePointer.updateMotion();
815815

816-
this.updateInputPlugins(CONST.MOUSE_DOWN, event.timeStamp, this.mousePointerContainer);
816+
this.updateInputPlugins(CONST.MOUSE_DOWN, this.mousePointerContainer);
817817
},
818818

819819
/**
@@ -831,7 +831,7 @@ var InputManager = new Class({
831831

832832
this.mousePointer.updateMotion();
833833

834-
this.updateInputPlugins(CONST.MOUSE_MOVE, event.timeStamp, this.mousePointerContainer);
834+
this.updateInputPlugins(CONST.MOUSE_MOVE, this.mousePointerContainer);
835835
},
836836

837837
/**
@@ -849,7 +849,7 @@ var InputManager = new Class({
849849

850850
this.mousePointer.updateMotion();
851851

852-
this.updateInputPlugins(CONST.MOUSE_UP, event.timeStamp, this.mousePointerContainer);
852+
this.updateInputPlugins(CONST.MOUSE_UP, this.mousePointerContainer);
853853
},
854854

855855
/**

0 commit comments

Comments
 (0)