Reputation: 345
selection_toolbar property only works with inlite theme. Is there any way to make it work for the default theme which is modern ?
tinymce.init({
selector: 'div.tinymce',
/* theme: 'inlite',*/
inline: true,
selection_toolbar: 'bold italic | quicklink h2 h3 blockquote'
});
Upvotes: 0
Views: 119
Reputation: 13726
The selection_toolbar
is only available in the inlite mode. If you wanted to use it in another mode you would have to write the code to do that yourself.
You could also submit a feature request here: GitHub Issue Tracker
Upvotes: 1