我想禁用Aloha Editor侧边栏。我在不同的地方看过以下代码,这对我不起作用:

Aloha.settings = {
  sidebar: { disabled: true }
};

如果我在调用aloha()之后添加它,则什么也不会发生,并且边栏仍然存在。如果在对元素调用aloha()之前添加它,则会出现以下错误:
Uncaught TypeError: Cannot read property 'getContents' of undefined

所有这些都是在Aloha.ready中进行的,如果我将代码移到Aloha.ready上方,则无法解决。

如果有帮助,这里是我正在<head>中加载的文件:
<script src="http://cdn.aloha-editor.org/latest/lib/require.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="http://cdn.aloha-editor.org/latest/lib/aloha.js" data-aloha-plugins="common/ui, common/format, common/list, common/link, common/highlighteditables, common/horizontalruler, common/undo, common/paste"></script>
<link href="http://cdn.aloha-editor.org/latest/css/aloha.css" rel="stylesheet" type="text/css" />

(我目前正在添加some CSS,感觉很不对。我希望有一个更好的解决方案。)

最佳答案

在调用aloha.js之前运行JS以进行设置:

<script>
Aloha = {};
Aloha.settings = { sidebar: { disabled: true } };
</script>
<script src="aloha/lib/vendor/require.js"></script>
<script src="aloha/lib/aloha.js"></script>

关于javascript - 禁用Aloha编辑器侧边栏,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15168342/

10-11 13:30