2
0
Fork 0
tcrud/lib/plugin/ui/spa/ui-spa-style.js
2017-12-23 22:45:27 +01:00

19 lines
413 B
JavaScript

module.exports = (function () {
return function UISpaStylePlugin() {
this.configPlugin = function (ctx) {
ctx.key='uiSpaStyle';
ctx.description='Adds basic styling resources.';
ctx.dependencies.push('uiSpaTopcoatFont');
};
this.configServer = function(ctx) {
//ctx.hostTemplateCSS('css/flot');
//ctx.hostTemplateCSS('css/panel');
ctx.hostTemplateCSS('css/style');
};
};
})();