Skip to content

Commit 05e50ac

Browse files
committed
Add IE bugfix css
1 parent 7061e5b commit 05e50ac

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

BUILD/BUILD.js

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,20 @@ new compressor.minify({
2424
if (err) {
2525
console.log(err);
2626
} else {
27-
console.log("CSS minified successfully.");
27+
console.log("Main CSS minified successfully.");
28+
}
29+
}
30+
});
31+
32+
new compressor.minify({
33+
type: 'yui-css',
34+
fileIn: '../introjs-ie.css',
35+
fileOut: '../minified/introjs-ie.min.css',
36+
callback: function (err) {
37+
if (err) {
38+
console.log(err);
39+
} else {
40+
console.log("IE bugfix CSS minified successfully.");
2841
}
2942
}
3043
});

0 commit comments

Comments
 (0)