More docs coming on.

This commit is contained in:
Richard Davey
2013-10-01 16:39:39 +01:00
parent a38ad2d1a9
commit ca113b85aa
80 changed files with 10121 additions and 4763 deletions
+4 -4
View File
@@ -21,13 +21,13 @@ Phaser.RequestAnimationFrame = function(game) {
this.game = game;
/**
* @property {bool} _isSetTimeOut - Description.
* @property {boolean} _isSetTimeOut - Description.
* @private
*/
this._isSetTimeOut = false;
/**
* @property {bool} isRunning - Description.
* @property {boolean} isRunning - Description.
* @default
*/
this.isRunning = false;
@@ -135,7 +135,7 @@ Phaser.RequestAnimationFrame.prototype = {
/**
* Is the browser using setTimeout?
* @method isSetTimeOut
* @return {bool}
* @return {boolean}
**/
isSetTimeOut: function () {
return this._isSetTimeOut;
@@ -144,7 +144,7 @@ Phaser.RequestAnimationFrame.prototype = {
/**
* Is the browser using requestAnimationFrame?
* @method isRAF
* @return {bool}
* @return {boolean}
**/
isRAF: function () {
return (this._isSetTimeOut === false);