소스 검색

fixed script execution issue

Gildas 7 년 전
부모
커밋
56a73e178d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/single-file/css-minifier.js

+ 1 - 1
lib/single-file/css-minifier.js

@@ -20,7 +20,7 @@
 
 /* global CSSRule, cssWhat, parseCss, RulesMatcher */
 
-this.cssMinifier = this.stylesMinifier || (() => {
+this.cssMinifier = this.cssMinifier || (() => {
 
 	const SEPARATOR_TYPES = ["descendant", "child", "sibling", "adjacent"];
 	const REMOVED_PSEUDO_CLASSES = ["focus", "focus-within", "hover", "link", "visited", "active"];