Remove use of goog.dom.createElement

This commit is contained in:
Frederic Junod
2015-11-23 09:22:39 +01:00
parent 6897e3cc52
commit 1092f6b2a2
10 changed files with 19 additions and 23 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ ol.renderer.dom.Map = function(container, map) {
* @type {!Element}
* @private
*/
this.layersPane_ = goog.dom.createElement('DIV');
this.layersPane_ = document.createElement('DIV');
this.layersPane_.className = ol.css.CLASS_UNSELECTABLE;
var style = this.layersPane_.style;
style.position = 'absolute';