##// END OF EJS Templates
fixed undefined value when no checkboxes are selected in _FormMixin.
fixed undefined value when no checkboxes are selected in _FormMixin.

File last commit:

r109:4a375b9c654a default
r140:515d1b83ebdf v1.9.0-rc4 default
Show More
css.ts
18 lines | 463 B | video/mp2t | TypeScriptLexer
import inject from "./dom-inject";
interface OnLoad {
(result?: unknown): void;
error(err: unknown): 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;