summaryrefslogtreecommitdiffstats
path: root/wp-includes/js/tinymce/tiny_mce_ext.js
diff options
context:
space:
mode:
Diffstat (limited to 'wp-includes/js/tinymce/tiny_mce_ext.js')
-rw-r--r--wp-includes/js/tinymce/tiny_mce_ext.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/wp-includes/js/tinymce/tiny_mce_ext.js b/wp-includes/js/tinymce/tiny_mce_ext.js
new file mode 100644
index 0000000..ccea485
--- /dev/null
+++ b/wp-includes/js/tinymce/tiny_mce_ext.js
@@ -0,0 +1,29 @@
+tinyMCEPreInit.start = function() {
+ var t = this, each = tinymce.each, s = t.settings, sl = tinymce.ScriptLoader, ln = s.languages, th = s.themes;
+
+ function load(u, sp) {
+ var o;
+
+ if (!sp)
+ u = t.base + u;
+
+ o = {url : u, state : 2};
+ sl.queue.push(o);
+ sl.lookup[o.url] = o;
+ };
+
+ sl.markDone(t.base + '/langs/' + ln + '.js');
+
+ load('/themes/' + th + '/editor_template' + t.suffix + '.js');
+ sl.markDone(t.base + '/themes/' + th + '/langs/' + ln + '.js');
+ sl.markDone(t.base + '/themes/' + th + '/langs/' + ln + '_dlg.js');
+
+ each(s.plugins.split(','), function(n) {
+ if (n && n.charAt(0) != '-') {
+ load('/plugins/' + n + '/editor_plugin' + t.suffix + '.js');
+
+ sl.markDone(t.base + '/plugins/' + n + '/langs/' + ln + '.js');
+ sl.markDone(t.base + '/plugins/' + n + '/langs/' + ln + '_dlg.js');
+ }
+ });
+};