|
@@ -1047,7 +1047,7 @@ this.SingleFileCore = this.SingleFileCore || (() => {
|
|
|
let start, end;
|
|
let start, end;
|
|
|
do {
|
|
do {
|
|
|
start = stylesheetContent.indexOf("/*");
|
|
start = stylesheetContent.indexOf("/*");
|
|
|
- end = stylesheetContent.indexOf("*/", start);
|
|
|
|
|
|
|
+ end = stylesheetContent.indexOf("*/", start + 2);
|
|
|
if (start != -1 && end != -1) {
|
|
if (start != -1 && end != -1) {
|
|
|
stylesheetContent = stylesheetContent.substring(0, start) + stylesheetContent.substr(end + 2);
|
|
stylesheetContent = stylesheetContent.substring(0, start) + stylesheetContent.substr(end + 2);
|
|
|
}
|
|
}
|