2013-08-16 39 views
2

我想在完整的rtl中使用新的(4.x)tinymce。如何在全rtl方向使用tinymce

採取這裏看看http://fiddle.tinymce.com/xwdaab/1

我設置

directionality: "rtl", 

但它僅僅影響輸入區域,我想所有的工具欄將調整到右側(RTL)

如何我可以這樣做嗎?

在老版本的是主題爲 「先進」 和我以前

theme_advanced_toolbar_align : "right", 

感謝

+0

有人知道??? – Nir

回答

3

我有同樣的問題。 我從plugins參數中刪除了「fullpage」,現在它適用於我。

我改變了這種代碼:

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" 
     ], 

這樣:

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" 
     ],