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" />
(私は現在、いくつかの CSSを追加していますが、これは間違っていると感じています。より良い解決策が望ましいです。)