Fix capitalization error introduced in a refactor

This commit is contained in:
Josh Lee
2020-06-02 19:41:35 -04:00
committed by GitHub
parent 0cd1b40c57
commit 943ca85616
+1 -1
View File
@@ -33,7 +33,7 @@
var isIE11 = !!(navigator.userAgent.match(/Trident/) && !navigator.userAgent.match(/MSIE/));
// currently all minified files are legacy ES5 because of uglifyJS
newScript.src = isIE11 ? 'iD.min.js' : 'id.min.js';
newScript.src = isIE11 ? 'iD.min.js' : 'iD.min.js';
document.getElementsByTagName('head')[0].appendChild(newScript);