From 943ca856163346d0b89f133aa2635e99d1a51a80 Mon Sep 17 00:00:00 2001 From: Josh Lee Date: Tue, 2 Jun 2020 19:41:35 -0400 Subject: [PATCH] Fix capitalization error introduced in a refactor --- dist/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.html b/dist/index.html index f5af51926..9566e49cc 100644 --- a/dist/index.html +++ b/dist/index.html @@ -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);