Skip to content

Commit

Permalink
Fix jshint issues in src/input
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Wesselhoeft committed Mar 25, 2014
1 parent 2ea76d1 commit ebad4c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/input/Keyboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
};

},

Expand Down
4 changes: 2 additions & 2 deletions src/input/Pointer.js
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ Phaser.Pointer.prototype = {
}
currentNode = currentNode.next;
}
while (currentNode != null)
while (currentNode != null);
}

if (this._highestRenderObject === null)
Expand Down Expand Up @@ -508,7 +508,7 @@ Phaser.Pointer.prototype = {

currentNode = currentNode.next;
}
while (currentNode != null)
while (currentNode != null);
}

if (this.targetObject)
Expand Down

0 comments on commit ebad4c1

Please sign in to comment.