I have a page with several text fields that I convert to tinymce fields.
<script src='//cdn.tinymce.com/4/tinymce.min.js'></script> <script> tinymce.init({ selector: '.input-textarea', toolbar: 'bold italic | bullist numlist indent outdent', statusbar: false, menubar: false, browser_spellcheck: true, contextmenu: false }); </script>
Text fields are all input-textarea classes, and the tinymce editor loads jsut fine. Except that for some reason, all the menu buttons are displayed, except for the bullist and the number list. Did I miss something?
source share