Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

wysiwyg-editor.js 864B

1234567891011121314151617
  1. 'use strict';
  2. $(document).ready(function() {
  3. tinymce.init({
  4. selector: 'textarea',
  5. height: 200,
  6. theme: 'modern',
  7. plugins: [
  8. 'advlist autolink lists link image charmap print preview hr anchor pagebreak',
  9. 'searchreplace wordcount visualblocks visualchars code fullscreen',
  10. 'insertdatetime media nonbreaking save table contextmenu directionality',
  11. 'emoticons template paste textcolor colorpicker textpattern imagetools codesample toc'
  12. ],
  13. toolbar1: 'undo redo | insert | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image',
  14. toolbar2: 'print preview media | forecolor backcolor emoticons | codesample',
  15. image_advtab: true
  16. });
  17. });