jsdoc cleanup
This commit is contained in:
parent
4ee3212d6d
commit
f9b6de36d0
|
@ -25,7 +25,7 @@
|
||||||
* Class to manage the game interface.
|
* Class to manage the game interface.
|
||||||
*
|
*
|
||||||
* @author Andy Janata (ajanata@socialgamer.net)
|
* @author Andy Janata (ajanata@socialgamer.net)
|
||||||
* @param {number}
|
* @param {Number}
|
||||||
* id The game id.
|
* id The game id.
|
||||||
* @constructor
|
* @constructor
|
||||||
*/
|
*/
|
||||||
|
@ -33,7 +33,7 @@ cah.Game = function(id) {
|
||||||
/**
|
/**
|
||||||
* The game id.
|
* The game id.
|
||||||
*
|
*
|
||||||
* @type {number}
|
* @type {Number}
|
||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
this.id_ = id;
|
this.id_ = id;
|
||||||
|
@ -215,7 +215,7 @@ cah.Game = function(id) {
|
||||||
*
|
*
|
||||||
* TODO reload round win state
|
* TODO reload round win state
|
||||||
*
|
*
|
||||||
* @param {number}
|
* @param {Number}
|
||||||
* gameId The game id.
|
* gameId The game id.
|
||||||
*/
|
*/
|
||||||
cah.Game.joinGame = function(gameId) {
|
cah.Game.joinGame = function(gameId) {
|
||||||
|
@ -977,7 +977,7 @@ cah.GameScorePanel = function(player) {
|
||||||
/**
|
/**
|
||||||
* The score on this scorecard.
|
* The score on this scorecard.
|
||||||
*
|
*
|
||||||
* @type {number}
|
* @type {Number}
|
||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
this.score_ = 0;
|
this.score_ = 0;
|
||||||
|
@ -1003,7 +1003,7 @@ cah.GameScorePanel.prototype.getElement = function() {
|
||||||
*
|
*
|
||||||
* TODO add some color for different statuses
|
* TODO add some color for different statuses
|
||||||
*
|
*
|
||||||
* @param {number}
|
* @param {Number}
|
||||||
* score The player's score
|
* score The player's score
|
||||||
* @param {cah.$.GamePlayerStatus}
|
* @param {cah.$.GamePlayerStatus}
|
||||||
* status The player's status.
|
* status The player's status.
|
||||||
|
|
Loading…
Reference in New Issue