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

View File

@@ -268,13 +268,13 @@ ol.render.canvas.ImageReplay = function() {
/**
* @private
* @type {number}
* @type {number|undefined}
*/
this.anchorX_ = undefined;
/**
* @private
* @type {number}
* @type {number|undefined}
*/
this.anchorY_ = undefined;
@@ -286,13 +286,13 @@ ol.render.canvas.ImageReplay = function() {
/**
* @private
* @type {number}
* @type {number|undefined}
*/
this.height_ = undefined;
/**
* @private
* @type {number}
* @type {number|undefined}
*/
this.width_ = undefined;