Skip to content

Commit

Permalink
fix: syntax error in IE10 and below because of const keyword (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistadikay authored and michael-ciniawsky committed Mar 15, 2017
1 parent c1d1e48 commit 01080cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addStyles.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 01080cf

Please sign in to comment.