How to disable Aloha Editor toolbar?

aloha-editor, javascript, jquery, wysiwyg

Solution

Mark element with class

<div class="editable notoolbar"></div>

Use event:

Aloha.ready(function () {
    var $ = Aloha.jQuery;
    Aloha.bind('aloha-editable-activated', function () {
        if ($(Aloha.activeEditable.obj[0]).hasClass("notoolbar")) {
            $(".aloha-toolbar").hide();
        }
    });
});

Problem

Is there a way to disable Aloha's ExtJS toolbar in the same way as sidebar? ``` Aloha.settings = modules: ['aloha', 'aloha/jquery'] editables: '.editable' jQuery: $ sidebar: disabled: true toolbar: disabled: true # does not work ```

Original source