瀏覽代碼

added missing semi-column

Gildas 7 年之前
父節點
當前提交
8254c719fc
共有 1 個文件被更改,包括 1 次插入1 次删除
  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) {