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
@@ -8,7 +8,7 @@ describe('ol.pointer.MouseSource', function() {
beforeEach(function() {
clock = sinon.useFakeTimers();
target = goog.dom.createElement(goog.dom.TagName.DIV);
target = goog.dom.createElement('DIV');
// make sure that a mouse and touch event source is used
ol.has.POINTER = false;
@@ -92,7 +92,6 @@ describe('ol.pointer.MouseSource', function() {
});
goog.require('goog.dom');
goog.require('goog.dom.TagName');
goog.require('goog.events');
goog.require('goog.events.BrowserEvent');
goog.require('ol.has');