2
0
Fork 0
tcrud/lib/plugin/ui/spa/ui-spa-style.js

19 lines
413 B
JavaScript
Raw Permalink Normal View History

2017-06-10 14:53:29 +00:00
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) {
2017-12-23 21:45:27 +00:00
//ctx.hostTemplateCSS('css/flot');
//ctx.hostTemplateCSS('css/panel');
2017-06-10 14:53:29 +00:00
ctx.hostTemplateCSS('css/style');
};
};
})();