Skip to content

Commit 82b1e53

Browse files
committed
Add missing parameter in loadCssFromHtmlCode function
1 parent 023d946 commit 82b1e53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/load.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ var Loader = function (data) {
102102
};
103103
var absoluteLocalPath = path.resolve(options.directory, currentOptions.filename);
104104

105-
var p = beforeHtmlProcessing(html, currentOptions).then(function loadCssFromHtmlCode() {
105+
var p = beforeHtmlProcessing(html, currentOptions).then(function loadCssFromHtmlCode(html) {
106106
return loadCssSources(currentOptions.url, absoluteLocalPath, html);
107107
});
108108

0 commit comments

Comments
 (0)