Merge pull request #214 from fredj/supported-const

Rename *.isSupported functions to *.SUPPORTED constants
This commit is contained in:
Frédéric Junod
2013-02-19 08:35:59 -08:00
7 changed files with 29 additions and 25 deletions
+4 -5
View File
@@ -1,9 +1,8 @@
goog.provide('ol.renderer.dom.isSupported');
goog.require('goog.functions');
goog.provide('ol.renderer.dom.SUPPORTED');
/**
* @return {boolean} Is supported.
* @const
* @type {boolean} Is supported.
*/
ol.renderer.dom.isSupported = goog.functions.TRUE;
ol.renderer.dom.SUPPORTED = true;