Skip to content

Commit 01080cf

Browse files
mistadikaymichael-ciniawsky
authored andcommitted
fix: syntax error in IE10 and below because of const keyword (#190)
1 parent c1d1e48 commit 01080cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addStyles.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ function updateLink(linkElement, options, obj) {
249249
on by default. Otherwise default to the convertToAbsoluteUrls option
250250
directly
251251
*/
252-
const autoFixUrls = options.convertToAbsoluteUrls === undefined && sourceMap;
252+
var autoFixUrls = options.convertToAbsoluteUrls === undefined && sourceMap;
253253

254254
if (options.convertToAbsoluteUrls || autoFixUrls){
255255
css = fixUrls(css);

0 commit comments

Comments
 (0)