我喜欢x-editable插件,之前曾用于角度独立应用程序。目前我已经使用Yeoman meanjs生成器生成了我的项目,我无法找到相同的选项,比如配置editableOptions,就像我在角应用程序中所做的那样。有谁知道我可以在哪里配置这些设置?它是否在快速配置中使用app.use?如果是,我如何在函数中包含可编辑选项。
app.run(function(editableOptions) {
editableOptions.theme = 'bs3'; // bootstrap3 theme. Can be also 'bs2', 'default'
});

答案 0 :(得分:1)
您可以尝试在文件moduleName.client.config.js
并做
moduleName.run(function(editableOptions) {
editableOptions.theme = 'bs3';
});
不要忘记在applicationModuleVendorDependencies中连接模块