right to left - how to use tinymce with full rtl direction -
i want use new (4.x) tinymce in full rtl.
take here http://fiddle.tinymce.com/xwdaab/1
i set
directionality: "rtl", but it's effect input area, want toolbars align right side (rtl)
how can this?
in old version theme "advanced" , used
theme_advanced_toolbar_align : "right", thanks
i had same problem. removed "fullpage" plugins argument , works me.
i changed code:
plugins: [ "advlist directionality autolink autosave link image lists charmap print preview hr anchor pagebreak", "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking", "table contextmenu textcolor paste fullpage textcolor" ], to this:
plugins: [ "advlist directionality autolink autosave link image lists charmap print preview hr anchor pagebreak", "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking", "table contextmenu textcolor paste textcolor" ],
Comments
Post a Comment