Remove unnecessary newlines

This commit is contained in:
Frederic Junod
2014-09-02 15:07:18 +02:00
parent afd43687f2
commit 6e3a5ca7ca
2 changed files with 3 additions and 6 deletions

View File

@@ -68,8 +68,7 @@ ol.has.CANVAS = ol.ENABLE_CANVAS && (
* @type {boolean}
* @api stable
*/
ol.has.DEVICE_ORIENTATION =
'DeviceOrientationEvent' in goog.global;
ol.has.DEVICE_ORIENTATION = 'DeviceOrientationEvent' in goog.global;
/**
@@ -111,8 +110,7 @@ ol.has.POINTER = 'PointerEvent' in goog.global;
* @const
* @type {boolean}
*/
ol.has.MSPOINTER =
!!(goog.global.navigator.msPointerEnabled);
ol.has.MSPOINTER = !!(goog.global.navigator.msPointerEnabled);
/**