##// END OF EJS Templates
Fixed startupWidgets for nodes are not of the Element type.
Fixed startupWidgets for nodes are not of the Element type.

File last commit:

r65:8ac132c83639 default
r69:c276b9b7fa83 v1.1.2 default
Show More
css.ts
18 lines | 455 B | video/mp2t | TypeScriptLexer
import inject from "./dom-inject";
interface OnLoad {
(result?: any): void;
error(err: any): void;
}
const plugin = {
load: (id: string, require: Require, cb: OnLoad, config: { isBuild?: boolean }) => {
if (config && config.isBuild) {
cb();
} else {
const url = require.toUrl(id);
inject.injectStylesheet(url).then(() => cb({ url }), e => cb.error(e));
}
}
};
export = plugin;