Don Rhummy
Don Rhummy

Reputation: 25810

Tinymce fontsizeselect is not using "theme_advanced_font_sizes" or "font_size_style_values" values

I'm initializing tinymce with:

tinymce.init({
    theme_advanced_font_sizes: "10px,11px,12px,13px,14px,15px,16px,17px,18px,20px,22px",
    font_size_style_values: "10px,11px,12px,13px,14px,15px,16px,17px,18px,20px,22px",
});

but the font size shown are still the defaults of "8pt, 10pt, ", etc.

How do I make tinymce use my font sizes?

Using: tinymce 4.0.6

Upvotes: 2

Views: 2302

Answers (1)

Don Rhummy
Don Rhummy

Reputation: 25810

TinyMCE changed the value to:

fontsize_formats

http://www.tinymce.com/wiki.php/Configuration:fontsize_formats

There is no documentation to let users know of this change.

Upvotes: 4

Related Questions