fix lint
This commit is contained in:
parent
d86724f17a
commit
16499358b3
1 changed files with 4 additions and 4 deletions
|
@ -31,13 +31,13 @@ const runStylesheet = function (url, code) {
|
|||
document.head.append(styleElement);
|
||||
}
|
||||
document.addEventListener('DOMContentLoaded', init);
|
||||
})`;
|
||||
})`
|
||||
const compiledWrapper = runInThisContext(wrapper, {
|
||||
filename: url,
|
||||
lineOffset: 1,
|
||||
displayErrors: true,
|
||||
});
|
||||
return compiledWrapper.call(this, code);
|
||||
displayErrors: true
|
||||
})
|
||||
return compiledWrapper.call(this, code)
|
||||
}
|
||||
|
||||
// Run injected scripts.
|
||||
|
|
Loading…
Reference in a new issue