fix: syntax error in IE10 and below because of `const` keyword (#190)

master
Denis Koltsov 2017-03-15 23:51:33 +01:00 committed by Michael Ciniawsky
parent c1d1e48ccf
commit 01080cf17f
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ function updateLink(linkElement, options, obj) {
on by default. Otherwise default to the convertToAbsoluteUrls option
directly
*/
const autoFixUrls = options.convertToAbsoluteUrls === undefined && sourceMap;
var autoFixUrls = options.convertToAbsoluteUrls === undefined && sourceMap;
if (options.convertToAbsoluteUrls || autoFixUrls){
css = fixUrls(css);