Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. });