mirror of
https://github.com/photonstorm/phaser
synced 2025-02-17 14:38:30 +00:00
Fix jshint issues in src/input
This commit is contained in:
parent
2ea76d1216
commit
ebad4c1d38
2 changed files with 3 additions and 3 deletions
|
@ -146,7 +146,7 @@ Phaser.Keyboard.prototype = {
|
|||
down: this.addKey(Phaser.Keyboard.DOWN),
|
||||
left: this.addKey(Phaser.Keyboard.LEFT),
|
||||
right: this.addKey(Phaser.Keyboard.RIGHT)
|
||||
}
|
||||
};
|
||||
|
||||
},
|
||||
|
||||
|
|
|
@ -378,7 +378,7 @@ Phaser.Pointer.prototype = {
|
|||
}
|
||||
currentNode = currentNode.next;
|
||||
}
|
||||
while (currentNode != null)
|
||||
while (currentNode != null);
|
||||
}
|
||||
|
||||
if (this._highestRenderObject === null)
|
||||
|
@ -508,7 +508,7 @@ Phaser.Pointer.prototype = {
|
|||
|
||||
currentNode = currentNode.next;
|
||||
}
|
||||
while (currentNode != null)
|
||||
while (currentNode != null);
|
||||
}
|
||||
|
||||
if (this.targetObject)
|
||||
|
|
Loading…
Add table
Reference in a new issue