Cleditor: Как поставить панель инструментов в две строки
Мне нужно, чтобы панель инструментов Cleditor состояла из двух строк, мой код:
var list = [txtDescripcion, txtRecomendacion, txtEfecto];
var controls_ = "bold italic underline strikethrough subscript superscript | font size
var options = {
height: 172,
width: 309,
controls: "bold italic underline subscript superscript | font size " +
" | color highlight | bullets numbering |" +
" alignleft center alignright justify | undo redo | " +
" cut copy paste pastetext";
}
$.each(list, function (i, elem) {
var editor = this.cleditor(options);
editor[0].focus();
спасибо за помощь!