vbenincasa
2011-05-02 90550b94790f74df455bfc34c5277c715c8d5d1a
 - Added an example in editor.js to help the skin developers know the possibility of sending config. parameter to TinyMCE
- Small fix to allow the script to work in IE6 and IE7

2 files modified
8 ■■■■ changed files
program/js/editor.js 2 ●●● patch | view | raw | blame | history
skins/default/functions.js 6 ●●●●● patch | view | raw | blame | history
program/js/editor.js
@@ -39,7 +39,7 @@
    $.extend(conf, {
      plugins: 'paste,tabfocus',
      theme_advanced_buttons1: 'bold,italic,underline,strikethrough,justifyleft,justifycenter,justifyright,justifyfull,separator,outdent,indent,charmap,hr,link,unlink,code,forecolor',
      theme_advanced_buttons2: ',fontselect,fontsizeselect',
      theme_advanced_buttons2: ',fontselect,fontsizeselect'
    });
  else // mail compose
    $.extend(conf, {
skins/default/functions.js
@@ -576,3 +576,9 @@
    span.parentNode.removeChild(span);
    return result;
}
// Optional parameters used by TinyMCE
var rcmail_editor_settings = {
  skin : "default", // "default", "o2k7"
  skin_variant : "" // "", "silver", "black"
};