如何在summernote中设置自定义字体大小列表?

时间:2016-04-22 05:36:11

标签: font-size summernote

我正在使用summernote,有时候我需要的字体值比font-size列表中的值更高。这是我目前的代码:

$('#summernote').summernote({
  toolbar: [
    ['style', ['style']],
    ['fontsize', ['fontsize']],
    ['font', ['bold', 'italic', 'underline', 'clear']],
    ['fontname', ['fontname']],
    ['color', ['color']],
    ['para', ['ul', 'ol', 'paragraph']],
    ['height', ['height']],
    ['insert', ['picture', 'hr']],
    ['table', ['table']]
  ],
  height: 585,
  focus: false
});

我试图放入工具栏字体大小(数字如10,20,25,30),但它没有帮助。有什么方法可以设置我自己的自定义字体大小列表吗?

1 个答案:

答案 0 :(得分:14)

要设置自定义字体大小列表,请将其添加到您的选项中:)选项:

$('#summernote').summernote({
    fontSizes: ['8', '9', '10', '11', '12', '14', '18', '24', '36', '48' , '64', '82', '150']
});