Fix indentation in commments

This commit is contained in:
Frederic Junod
2014-01-06 16:06:47 +01:00
parent fcd4413dc6
commit b4800dc637
+8 -8
View File
@@ -30,11 +30,11 @@ ol.ENABLE_WEBGL = true;
/** /**
* The ratio between physical pixels and device-independent pixels * The ratio between physical pixels and device-independent pixels
* (dips) on the device (`window.devicePixelRatio`). * (dips) on the device (`window.devicePixelRatio`).
* @const {number} * @const {number}
* @todo stability experimental * @todo stability experimental
*/ */
ol.BrowserFeature.DEVICE_PIXEL_RATIO = goog.global.devicePixelRatio || 1; ol.BrowserFeature.DEVICE_PIXEL_RATIO = goog.global.devicePixelRatio || 1;
@@ -87,10 +87,10 @@ ol.BrowserFeature.HAS_GEOLOCATION = 'geolocation' in goog.global.navigator;
/** /**
* True if browser supports touch events. * True if browser supports touch events.
* @const {boolean} * @const {boolean}
* @todo stability experimental * @todo stability experimental
*/ */
ol.BrowserFeature.HAS_TOUCH = ol.ASSUME_TOUCH || ol.BrowserFeature.HAS_TOUCH = ol.ASSUME_TOUCH ||
(goog.global.document && (goog.global.document &&
'ontouchstart' in goog.global.document.documentElement) || 'ontouchstart' in goog.global.document.documentElement) ||