Remove unused ol.dom.setTransform()

This commit is contained in:
Tim Schaub
2016-08-31 15:29:39 -06:00
parent 0a60eced25
commit 0ea5ded807
2 changed files with 0 additions and 29 deletions

View File

@@ -7,15 +7,6 @@ var olGlobal = ol.global;
var ua = typeof navigator !== 'undefined' ?
navigator.userAgent.toLowerCase() : '';
var ie = ua.match(/msie ([0-9]{1,}[\.0-9]{0,})/);
var trident = ua.match(/trident\/([0-9]{1,}[\.0-9]{0,})/);
/**
* User agent string says we are dealing with IE >= 9 as browser.
* @type {boolean}
*/
ol.has.IE = !!(ie && parseFloat(ie[1]) >= 9 || trident && parseFloat(trident[1]) >= 6);
/**
* User agent string says we are dealing with Firefox as browser.
* @type {boolean}