You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
802 B
20 lines
802 B
(function(){
|
|
if ( typeof tinyMCEPreInit === 'undefined' )
|
|
return;
|
|
|
|
var t = tinyMCEPreInit, baseurl = t.base, markDone = tinymce.ScriptLoader.markDone, lang = t.ref.language,
|
|
theme = t.ref.theme, plugins = t.ref.plugins, suffix = t.suffix;
|
|
|
|
markDone( baseurl+'/langs/'+lang+'.js' );
|
|
markDone( baseurl+'/themes/'+theme+'/editor_template'+suffix+'.js' );
|
|
markDone( baseurl+'/themes/'+theme+'/langs/'+lang+'.js' );
|
|
markDone( baseurl+'/themes/'+theme+'/langs/'+lang+'_dlg.js' );
|
|
|
|
tinymce.each( plugins.split(','), function(plugin){
|
|
if ( plugin && plugin.charAt(0) != '-' ) {
|
|
markDone( baseurl+'/plugins/'+plugin+'/editor_plugin'+suffix+'.js' );
|
|
markDone( baseurl+'/plugins/'+plugin+'/langs/'+lang+'.js' );
|
|
markDone( baseurl+'/plugins/'+plugin+'/langs/'+lang+'_dlg.js' )
|
|
}
|
|
});
|
|
})();
|