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.

21 lines
537 B

  1. tinymce.init({
  2. selector: 'textarea#custom-toolbar-group-button',
  3. height: 500,
  4. toolbar_mode: 'floating',
  5. toolbar: 'alignment',
  6. content_css: [
  7. '//fonts.googleapis.com/css?family=Lato:300,300i,400,400i',
  8. '//www.tiny.cloud/css/codepen.min.css'
  9. ],
  10. setup: function (editor) {
  11. /* example, adding a group toolbar button */
  12. editor.ui.registry.addGroupToolbarButton('alignment', {
  13. icon: 'align-left',
  14. tooltip: 'Alignment',
  15. items: 'alignleft aligncenter alignright | alignjustify'
  16. });
  17. }
  18. });