您好我正在尝试将字体大小插件添加到Aloha Editor,但是我一直收到错误:
TypeError:Aloha.settings.plugins未定义
修改 通过执行以下操作,我能够解决问题:
<script src="Scripts/aloha/lib/require.js"></script>
<script>
Aloha.settings = {
locale: 'en',
plugins: {}
</script>
<script src="Scripts/aloha/lib/aloha.js" data-aloha-plugins="common/ui,common/format,common/highlighteditables,common/link,community/fontsize"></script>
在实际加载插件之前,Aloha.settings现在有一个空的插件对象。 我的问题现在更具体到我试图使用的插件。我不知道在插件中指定了哪些设置:{}括号。
我可以在这里找到我尝试使用的插件: https://github.com/jstrouse/Aloha-Plugin-FontSize https://github.com/deliminator/Aloha-Plugin-Colorselector 后者直接从官方页面链接: http://aloha-editor.org/guides/plugins.html