我正在尝试向 Aloha 内联编辑器 UI 工具栏添加一个按钮,以便在我的 rails 应用程序中使用。用于普通 html 页面的代码可以正常工作。然而,在我的 Rails 应用程序中,即使我复制粘贴它,它也无法正常工作。该页面甚至没有显示任何错误。我的代码如下,它来自他们的网站,只是在这里包含它: -
<script type="text/javascript">
Aloha.require(['ui/ui', 'ui/button'], function(Ui, Button) {
var button = Ui.adopt("myButton", Button, {
click: function(){
alert("Click!");
}
});
});
Aloha.settings.toolbar = {
tabs: [
{
label: 'Save',
components: [ 'myButton' ]
}
],
exclude: [ 'strong', 'emphasis', 'strikethrough' ]
};
Aloha.ready( function() {
var $ = Aloha.jQuery;
$('.editable').aloha();
});
</script>