mirror of
https://github.com/Investigamer/cardconjurer.git
synced 2025-07-28 05:41:55 -05:00
Update life.js
This commit is contained in:
@@ -243,10 +243,10 @@ function switchToTouchEvents() {
|
|||||||
for (var i = 1; i <= playerCount; i++) {
|
for (var i = 1; i <= playerCount; i++) {
|
||||||
playerList[i - 1].canvas.removeEventListener("mousedown", decoyMouseDownFunction, true)
|
playerList[i - 1].canvas.removeEventListener("mousedown", decoyMouseDownFunction, true)
|
||||||
playerList[i - 1].canvas.addEventListener("touchstart", function() {
|
playerList[i - 1].canvas.addEventListener("touchstart", function() {
|
||||||
window.scrollTo(0, 0)
|
|
||||||
for (var i = 0; i < event.touches.length; i ++) {
|
for (var i = 0; i < event.touches.length; i ++) {
|
||||||
mouseDownPlayerBox(this, event.touches[i].clientX, event.touches[i].clientY)
|
// mouseDownPlayerBox(this, event.touches[i].clientX, event.touches[i].clientY)
|
||||||
}
|
}
|
||||||
|
window.scrollTo(0, 0)
|
||||||
}, true)
|
}, true)
|
||||||
playerList[i - 1].canvas.addEventListener("touchend", function() {
|
playerList[i - 1].canvas.addEventListener("touchend", function() {
|
||||||
mouseUpPlayerBox(this)
|
mouseUpPlayerBox(this)
|
||||||
|
Reference in New Issue
Block a user