mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 11:36:48 +00:00
18 lines
399 B
JavaScript
18 lines
399 B
JavaScript
define(['underscore'], function() {
|
|
var styles = {
|
|
css: [
|
|
'bootstrap-combined.min',
|
|
'bootswatch',
|
|
'font-awesome.min',
|
|
'app'
|
|
],
|
|
less: [
|
|
'mifosX'
|
|
]
|
|
};
|
|
|
|
require(_.reduce(_.keys(styles), function(list, pluginName) {
|
|
return list.concat(_.map(styles[pluginName], function(stylename) { return pluginName + "!styles/" + stylename; }));
|
|
}, []));
|
|
});
|