TinyMCE-4
fotsizeselect
by nobuts
HTML
<script src="//cdn.tinymce.com/4/tinymce.min.js"></script>
<textarea class="mytextarea"></textarea>
JavaScript
tinymce.init({
selector: '.mytextarea',
theme: 'modern',
plugins: [
'advlist autolink lists link image charmap print preview anchor',
'searchreplace visualblocks code fullscreen',
'insertdatetime table contextmenu paste code'
],
toolbar1: 'insertfile undo redo | styleselect | bold italic | bullist numlist outdent indent | fontsizeselect',
setup: function (editor)
{
editor.on ('init', function()
{
this.execCommand ('fontsize', false, '24pt');
this.getBody().style.fontSize = '24pt';
})
//this.formatter.apply ('fontsize', {value: '24pt'});
}
});