我使用summernote和它的codeview。我的问题是,如果字符串很长,它会进入无穷大。我想溢出它。所以我不需要水平滚动。
任何问题?
这是我的启动代码。
var summernote = $('#description').summernote({
height: 1000, // set editor height
minHeight: null, // set minimum height of editor
maxHeight: null, // set maximum height of editor
maxWidth: 100, // set maximum width of editor
toolbar: [
['style', ['style']],
['font', ['bold', 'italic', 'underline', 'clear']],
// ['font', ['bold', 'italic', 'underline', 'strikethrough', 'superscript', 'subscript', 'clear']],
['color', ['color']],
['para', ['ul', 'ol', 'paragraph']],
['insert', ['link', 'picture', 'hr']],
['view', ['fullscreen', 'codeview']], // remove codeview button
['help', ['help']]
],
codemirror: {
mode: 'text/html',
htmlMode: true,
lineNumbers: true,
theme: 'monokai'
},
callbacks: {
onInit: function() {
console.log('Summernote is launched');
$(this).summernote('codeview.activate');
$('#title').focus();
}
}
});
答案 0 :(得分:0)
添加
lineWrapping: true,
在lineNumbers之后:true, 适合我