Add missing 'undefined' in jsdoc type definition

This commit is contained in:
Frederic Junod
2013-11-21 14:48:49 +01:00
parent 76a908d00c
commit c0ad472984
+4 -4
View File
@@ -268,13 +268,13 @@ ol.render.canvas.ImageReplay = function() {
/** /**
* @private * @private
* @type {number} * @type {number|undefined}
*/ */
this.anchorX_ = undefined; this.anchorX_ = undefined;
/** /**
* @private * @private
* @type {number} * @type {number|undefined}
*/ */
this.anchorY_ = undefined; this.anchorY_ = undefined;
@@ -286,13 +286,13 @@ ol.render.canvas.ImageReplay = function() {
/** /**
* @private * @private
* @type {number} * @type {number|undefined}
*/ */
this.height_ = undefined; this.height_ = undefined;
/** /**
* @private * @private
* @type {number} * @type {number|undefined}
*/ */
this.width_ = undefined; this.width_ = undefined;