如何为nicEditor使用多个配置?

时间:2013-01-03 23:48:20

标签: javascript nicedit

我有一个id为“p_1_input”的textarea,如下所示,我试图限制此编辑器对话框的功能并限制其高度,因此过多的内容不会推动对话框扩展但是可滚动。
如何将两个配置放在网上,例如: “{maxHeight : 200}" and "{buttonList : ['bold','italic']}”?

new nicEditor({buttonList : ['bold','italic']}).panelInstance('p_1_input');
new nicEditor({maxHeight : 200}).panelInstance('p_1_input');

1 个答案:

答案 0 :(得分:0)

你可以这样使用。

new nicEditor({
         maxHeight: 133,
         buttonList: ['bold','italic']
          }).panelInstance('p_1_input');