RTL for TinyMCE:

- Add _dir: 'rtl' to the TinyMCE translation object.
- Fix editor.css for RTL.
- Fix the Edit and Delete buttons position for wpview and images.
- For _mce_set_direction(), update documentation and fix adding the 'ltr' button.
Fixes #27773

git-svn-id: https://develop.svn.wordpress.org/trunk@28094 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz
2014-04-13 00:22:56 +00:00
parent 7a25da5240
commit 3396375d47
6 changed files with 45 additions and 8 deletions

View File

@@ -982,6 +982,11 @@ final class _WP_Editors {
$baseurl = self::$baseurl;
$mce_locale = self::$mce_locale;
// Set direction
if ( is_rtl() ) {
$mce_translation['_dir'] = 'rtl';
}
/**
* Filter translated strings prepared for TinyMCE.
*