TinyMCE-4

fotsizeselect

by DugSohn

HTML

<script src="//cdn.tinymce.com/4/tinymce.min.js"></script>
<textarea id="mytextarea"></textarea>

JavaScript

tinymce.init({
    selector: '#mytextarea',
    statusbar: false,
    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'});
	}
});