Remove use of goog.dom.appendChild

Use `parent.appendChild(child)` instead.
This commit is contained in:
Frederic Junod
2015-10-01 12:06:35 +02:00
parent e5397cbfca
commit 9b6ad1b36f
6 changed files with 14 additions and 14 deletions

View File

@@ -46,7 +46,7 @@ ol.control.Attribution = function(opt_options) {
*/ */
this.logoLi_ = goog.dom.createElement(goog.dom.TagName.LI); this.logoLi_ = goog.dom.createElement(goog.dom.TagName.LI);
goog.dom.appendChild(this.ulElement_, this.logoLi_); this.ulElement_.appendChild(this.logoLi_);
goog.style.setElementShown(this.logoLi_, false); goog.style.setElementShown(this.logoLi_, false);
/** /**
@@ -265,7 +265,7 @@ ol.control.Attribution.prototype.updateElement_ = function(frameState) {
attributionElement = goog.dom.createElement(goog.dom.TagName.LI); attributionElement = goog.dom.createElement(goog.dom.TagName.LI);
attributionElement.innerHTML = attributionElement.innerHTML =
visibleAttributions[attributionKey].getHTML(); visibleAttributions[attributionKey].getHTML();
goog.dom.appendChild(this.ulElement_, attributionElement); this.ulElement_.appendChild(attributionElement);
this.attributionElements_[attributionKey] = attributionElement; this.attributionElements_[attributionKey] = attributionElement;
this.attributionElementRenderedVisible_[attributionKey] = true; this.attributionElementRenderedVisible_[attributionKey] = true;
} }
@@ -274,7 +274,7 @@ ol.control.Attribution.prototype.updateElement_ = function(frameState) {
attributionElement.innerHTML = attributionElement.innerHTML =
hiddenAttributions[attributionKey].getHTML(); hiddenAttributions[attributionKey].getHTML();
goog.style.setElementShown(attributionElement, false); goog.style.setElementShown(attributionElement, false);
goog.dom.appendChild(this.ulElement_, attributionElement); this.ulElement_.appendChild(attributionElement);
this.attributionElements_[attributionKey] = attributionElement; this.attributionElements_[attributionKey] = attributionElement;
} }
@@ -328,7 +328,7 @@ ol.control.Attribution.prototype.insertLogos_ = function(frameState) {
}); });
logoElement.appendChild(image); logoElement.appendChild(image);
} }
goog.dom.appendChild(this.logoLi_, logoElement); this.logoLi_.appendChild(logoElement);
logoElements[logoKey] = logoElement; logoElements[logoKey] = logoElement;
} }
} }

View File

@@ -116,7 +116,7 @@ ol.control.Control.prototype.setMap = function(map) {
if (this.map_) { if (this.map_) {
var target = this.target_ ? var target = this.target_ ?
this.target_ : map.getOverlayContainerStopEvent(); this.target_ : map.getOverlayContainerStopEvent();
goog.dom.appendChild(target, this.element); target.appendChild(this.element);
if (this.render !== ol.nullFunction) { if (this.render !== ol.nullFunction) {
this.listenerKeys.push(goog.events.listen(map, this.listenerKeys.push(goog.events.listen(map,
ol.MapEventType.POSTRENDER, this.render, false, this)); ol.MapEventType.POSTRENDER, this.render, false, this));

View File

@@ -54,7 +54,7 @@ ol.dom.canUseCssTransform = (function() {
'MozTransform': '-moz-transform', 'MozTransform': '-moz-transform',
'transform': 'transform' 'transform': 'transform'
}; };
goog.dom.appendChild(document.body, el); document.body.appendChild(el);
for (var t in transforms) { for (var t in transforms) {
if (t in el.style) { if (t in el.style) {
el.style[t] = 'translate(1px,1px)'; el.style[t] = 'translate(1px,1px)';
@@ -97,7 +97,7 @@ ol.dom.canUseCssTransform3D = (function() {
'MozTransform': '-moz-transform', 'MozTransform': '-moz-transform',
'transform': 'transform' 'transform': 'transform'
}; };
goog.dom.appendChild(document.body, el); document.body.appendChild(el);
for (var t in transforms) { for (var t in transforms) {
if (t in el.style) { if (t in el.style) {
el.style[t] = 'translate3d(1px,1px,1px)'; el.style[t] = 'translate3d(1px,1px,1px)';

View File

@@ -279,7 +279,7 @@ ol.Map = function(options) {
*/ */
this.overlayContainer_ = goog.dom.createDom(goog.dom.TagName.DIV, this.overlayContainer_ = goog.dom.createDom(goog.dom.TagName.DIV,
'ol-overlaycontainer'); 'ol-overlaycontainer');
goog.dom.appendChild(this.viewport_, this.overlayContainer_); this.viewport_.appendChild(this.overlayContainer_);
/** /**
* @private * @private
@@ -296,7 +296,7 @@ ol.Map = function(options) {
ol.MapBrowserEvent.EventType.POINTERDOWN, ol.MapBrowserEvent.EventType.POINTERDOWN,
goog.userAgent.GECKO ? 'DOMMouseScroll' : 'mousewheel' goog.userAgent.GECKO ? 'DOMMouseScroll' : 'mousewheel'
], goog.events.Event.stopPropagation); ], goog.events.Event.stopPropagation);
goog.dom.appendChild(this.viewport_, this.overlayContainerStopEvent_); this.viewport_.appendChild(this.overlayContainerStopEvent_);
var mapBrowserEventHandler = new ol.MapBrowserEventHandler(this); var mapBrowserEventHandler = new ol.MapBrowserEventHandler(this);
goog.events.listen(mapBrowserEventHandler, goog.events.listen(mapBrowserEventHandler,
@@ -1039,7 +1039,7 @@ ol.Map.prototype.handleTargetChanged_ = function() {
this.viewportResizeListenerKey_ = null; this.viewportResizeListenerKey_ = null;
} }
} else { } else {
goog.dom.appendChild(targetElement, this.viewport_); targetElement.appendChild(this.viewport_);
var keyboardEventTarget = !this.keyboardEventTarget_ ? var keyboardEventTarget = !this.keyboardEventTarget_ ?
targetElement : this.keyboardEventTarget_; targetElement : this.keyboardEventTarget_;

View File

@@ -136,7 +136,7 @@ ol.renderer.dom.ImageLayer.prototype.prepareFrame =
imageElement.style.maxWidth = 'none'; imageElement.style.maxWidth = 'none';
imageElement.style.position = 'absolute'; imageElement.style.position = 'absolute';
goog.dom.removeChildren(this.target); goog.dom.removeChildren(this.target);
goog.dom.appendChild(this.target, imageElement); this.target.appendChild(imageElement);
this.image_ = image; this.image_ = image;
} }
this.setTransform_(transform); this.setTransform_(transform);

View File

@@ -364,7 +364,7 @@ ol.renderer.dom.TileLayerZ_.prototype.addTile = function(tile, tileGutter) {
imageStyle.top = -tileGutter + 'px'; imageStyle.top = -tileGutter + 'px';
imageStyle.width = (tileSize[0] + 2 * tileGutter) + 'px'; imageStyle.width = (tileSize[0] + 2 * tileGutter) + 'px';
imageStyle.height = (tileSize[1] + 2 * tileGutter) + 'px'; imageStyle.height = (tileSize[1] + 2 * tileGutter) + 'px';
goog.dom.appendChild(tileElement, image); tileElement.appendChild(image);
} else { } else {
imageStyle.width = tileSize[0] + 'px'; imageStyle.width = tileSize[0] + 'px';
imageStyle.height = tileSize[1] + 'px'; imageStyle.height = tileSize[1] + 'px';
@@ -379,7 +379,7 @@ ol.renderer.dom.TileLayerZ_.prototype.addTile = function(tile, tileGutter) {
if (!this.documentFragment_) { if (!this.documentFragment_) {
this.documentFragment_ = document.createDocumentFragment(); this.documentFragment_ = document.createDocumentFragment();
} }
goog.dom.appendChild(this.documentFragment_, tileElement); this.documentFragment_.appendChild(tileElement);
this.tiles_[tileCoordKey] = tile; this.tiles_[tileCoordKey] = tile;
}; };
@@ -389,7 +389,7 @@ ol.renderer.dom.TileLayerZ_.prototype.addTile = function(tile, tileGutter) {
*/ */
ol.renderer.dom.TileLayerZ_.prototype.finalizeAddTiles = function() { ol.renderer.dom.TileLayerZ_.prototype.finalizeAddTiles = function() {
if (this.documentFragment_) { if (this.documentFragment_) {
goog.dom.appendChild(this.target, this.documentFragment_); this.target.appendChild(this.documentFragment_);
this.documentFragment_ = null; this.documentFragment_ = null;
} }
}; };