Erste Funktionalität der Menükarte per GET/POST, keine API; Umstrukturierung der Tabelle als Bootstrap-div; HTML/CSS-Cleanup
This commit is contained in:
4
node_modules/uglify-js/lib/output.js
generated
vendored
4
node_modules/uglify-js/lib/output.js
generated
vendored
@@ -444,11 +444,11 @@ function OutputStream(options) {
|
||||
});
|
||||
} else if (c.test) {
|
||||
comments = comments.filter(function(comment){
|
||||
return c.test(comment.value) || comment.type == "comment5";
|
||||
return comment.type == "comment5" || c.test(comment.value);
|
||||
});
|
||||
} else if (typeof c == "function") {
|
||||
comments = comments.filter(function(comment){
|
||||
return c(self, comment) || comment.type == "comment5";
|
||||
return comment.type == "comment5" || c(self, comment);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user