Input, Loader and Math docs tidied up.

This commit is contained in:
Richard Davey
2013-10-02 15:05:55 +01:00
parent 1a2dc05609
commit 868ae81bab
89 changed files with 62657 additions and 1080 deletions
+3 -3
View File
@@ -42,21 +42,21 @@ Phaser.Keyboard = function (game) {
* @property {boolean} disabled - The disabled state of the Keyboard.
* @default
*/
disabled: false,
this.disabled = false;
/**
* @property {function} _onKeyDown
* @private
* @default
*/
_onKeyDown: null,
this._onKeyDown = null;
/**
* @property {function} _onKeyUp
* @private
* @default
*/
_onKeyUp: null,
this._onKeyUp = null;
/**
* @property {Object} callbackContext - The context under which the callbacks are run.