6

我需要将 Aloha 编辑器固定到特定位置,而不是在整个页面上弹跳。

有没有配置选项?有一个用于配置 Aloha 的“附加”选项,但我不知道如何应用,或者即使它可以解决我的问题......

如果没有配置选项,也可以使用 hack 来覆盖位置。

4

3 回答 3

3

配置表明您使用“元素”设置来指定要附加到的元素的 id :

behaviour: 'float', // 'float' (default), 'topalign', 'append'
element: 'my-html-element-id', // use with 'append' behaviour option: HTML DOM ID of the element the FM should get the position from

此外,请使用其他选项,例如 draggable: false 和 pin: false。

如果这对您不起作用,请打开错误报告。

于 2012-07-07T18:45:09.497 回答
2

对我的错误报告的回应:

此设置已添加到 dev 分支(但到目前为止还没有找到通往发布分支的方法),并且指南中的描述已添加到发布分支。

https://github.com/alohaeditor/Aloha-Editor/issues/584#issuecomment-6870029

于 2012-07-11T03:21:19.230 回答
0
var toolbar = $('.aloha-toolbar');
// make the toolbar extend to 100% of the div.
toolbar.css({'width': '100%', 'height': '100%', });
// ADDS THE ALOHA EDITOR TO A DIV! 
$('#alohaContainer').append(toolbar);
// Renders the toolbar to the screen             
UiPlugin.showToolbar();
// The child element must also be resized, don't know why
toolbar.children().css({'width': '100%', 'height': '100%'});
于 2013-09-10T22:00:02.083 回答