Feature #306 - The online editor: To my regret, the plugin "dragresizetible" does not work correctly when text direction is rtl, it is hard-coded for ltr direction only. So, I am disabling this plugin for some languages that use rtl writting system.

skala
Ivan Tcholakov 16 years ago
parent 898f89a1fc
commit 455d35ccef
  1. 5
      main/inc/lib/fckeditor/myconfig.php

@ -80,7 +80,10 @@ $config['ToolbarSets']['Directory'] = 'default';
$config['LoadPlugin'][] = 'customizations';
// dragresizetable & tablecommands : Plugins for improvement table-related operations.
$config['LoadPlugin'][] = 'dragresizetable';
if (trim(get_lang('text_dir', '')) != 'rtl') {
// This plugin works properly only when language writting system is "from left to right (ltr)".
$config['LoadPlugin'][] = 'dragresizetable';
}
$config['LoadPlugin'][] = 'tablecommands';
// prompt : This plugin is a dialog implementation as a replacemet of the javascript function prompt().

Loading…
Cancel
Save