summaryrefslogtreecommitdiff
path: root/skins
diff options
context:
space:
mode:
authorvbenincasa <vbenincasa@gmail.com>2011-05-02 13:20:01 +0000
committervbenincasa <vbenincasa@gmail.com>2011-05-02 13:20:01 +0000
commit90550b94790f74df455bfc34c5277c715c8d5d1a (patch)
tree11cf70cf5794b6c1dfbda3e4304b48856bbb76c7 /skins
parent87e58c7a92b4581fabe43d9f5bac7a68acc8d343 (diff)
- 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
Diffstat (limited to 'skins')
-rw-r--r--skins/default/functions.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/skins/default/functions.js b/skins/default/functions.js
index c9d63e9ed..65ac39d38 100644
--- a/skins/default/functions.js
+++ b/skins/default/functions.js
@@ -576,3 +576,9 @@ function fit_string_to_size(str, elem, len)
span.parentNode.removeChild(span);
return result;
}
+
+// Optional parameters used by TinyMCE
+var rcmail_editor_settings = {
+ skin : "default", // "default", "o2k7"
+ skin_variant : "" // "", "silver", "black"
+};