diff --git a/src/ol/browserfeature.js b/src/ol/browserfeature.js index 87bc5f5b42..c7a30bb633 100644 --- a/src/ol/browserfeature.js +++ b/src/ol/browserfeature.js @@ -32,8 +32,7 @@ ol.ENABLE_WEBGL = true; /** * The ratio between physical pixels and device-independent pixels * (dips) on the device (`window.devicePixelRatio`). -* @const -* @type {number} +* @const {number} * @todo stability experimental */ ol.BrowserFeature.DEVICE_PIXEL_RATIO = goog.global.devicePixelRatio || 1; @@ -41,8 +40,7 @@ ol.BrowserFeature.DEVICE_PIXEL_RATIO = goog.global.devicePixelRatio || 1; /** * True if browser supports Canvas. - * @const - * @type {boolean} + * @const {boolean} * @todo stability experimental */ ol.BrowserFeature.HAS_CANVAS = ol.ENABLE_CANVAS && ( @@ -65,8 +63,7 @@ ol.BrowserFeature.HAS_CANVAS = ol.ENABLE_CANVAS && ( /** * Indicates if DeviceOrientation is supported in the user's browser. - * @const - * @type {boolean} + * @const {boolean} * @todo stability experimental */ ol.BrowserFeature.HAS_DEVICE_ORIENTATION = @@ -75,8 +72,7 @@ ol.BrowserFeature.HAS_DEVICE_ORIENTATION = /** * True if browser supports DOM. - * @const - * @type {boolean} + * @const {boolean} * @todo stability experimental */ ol.BrowserFeature.HAS_DOM = ol.ENABLE_DOM; @@ -84,8 +80,7 @@ ol.BrowserFeature.HAS_DOM = ol.ENABLE_DOM; /** * Is HTML5 geolocation supported in the current browser? - * @const - * @type {boolean} + * @const {boolean} * @todo stability experimental */ ol.BrowserFeature.HAS_GEOLOCATION = 'geolocation' in goog.global.navigator; @@ -93,8 +88,7 @@ ol.BrowserFeature.HAS_GEOLOCATION = 'geolocation' in goog.global.navigator; /** * True if browser supports touch events. -* @const -* @type {boolean} +* @const {boolean} * @todo stability experimental */ ol.BrowserFeature.HAS_TOUCH = ol.ASSUME_TOUCH || @@ -105,8 +99,7 @@ ol.BrowserFeature.HAS_TOUCH = ol.ASSUME_TOUCH || /** * True if browser supports WebGL. - * @const - * @type {boolean} + * @const {boolean} * @todo stability experimental */ ol.BrowserFeature.HAS_WEBGL = ol.ENABLE_WEBGL && (