Quellcode durchsuchen

added missing semi-column

Gildas vor 7 Jahren
Ursprung
Commit
8254c719fc
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      lib/single-file/css-rules-matcher.js

+ 1 - 1
lib/single-file/css-rules-matcher.js

@@ -24,7 +24,7 @@ this.RulesMatcher = this.RulesMatcher || (() => {
 
 	const MEDIA_ALL = "all";
 	const PRIORITY_IMPORTANT = "important";
-	const IGNORED_PSEUDO_CLASSES = [":focus", ":focus-within", ":hover", ":link", ":visited", ":active"]
+	const IGNORED_PSEUDO_CLASSES = [":focus", ":focus-within", ":hover", ":link", ":visited", ":active"];
 
 	class RulesMatcher {
 		constructor(doc) {