Remove usage of goog.dom.TagName enum

This commit is contained in:
Marc Jansen
2015-10-12 20:42:34 +02:00
parent e111e30f33
commit 9386415633
27 changed files with 58 additions and 85 deletions
+1 -2
View File
@@ -4,7 +4,6 @@ goog.provide('ol.OverlayProperty');
goog.require('goog.asserts');
goog.require('goog.dom');
goog.require('goog.dom.TagName');
goog.require('goog.events');
goog.require('goog.style');
goog.require('ol.Coordinate');
@@ -91,7 +90,7 @@ ol.Overlay = function(options) {
* @private
* @type {Element}
*/
this.element_ = goog.dom.createDom(goog.dom.TagName.DIV, {
this.element_ = goog.dom.createDom('DIV', {
'class': 'ol-overlay-container'
});
this.element_.style.position = 'absolute';