mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-07 01:39:04 +00:00
git-svn-id: https://develop.svn.wordpress.org/trunk@19945 602fd350-edb4-49c9-b593-d223f7449a82
21 lines
845 B
JavaScript
21 lines
845 B
JavaScript
(function(){
|
|
if ( 'undefined' == tinyMCEPreInit )
|
|
return;
|
|
|
|
var baseurl = tinyMCEPreInit.base, sl = tinymce.ScriptLoader, lang = tinyMCEPreInit.ref.language,
|
|
theme = tinyMCEPreInit.ref.theme, plugins = tinyMCEPreInit.ref.plugins, suffix = tinyMCEPreInit.suffix;
|
|
|
|
sl.markDone( baseurl+'/langs/'+lang+'.js' );
|
|
sl.markDone( baseurl+'/themes/'+theme+'/editor_template'+suffix+'.js' );
|
|
sl.markDone( baseurl+'/themes/'+theme+'/langs/'+lang+'.js' );
|
|
sl.markDone( baseurl+'/themes/'+theme+'/langs/'+lang+'_dlg.js' );
|
|
|
|
tinymce.each( plugins.split(','), function(plugin){
|
|
if ( plugin && plugin.charAt(0) != '-' ) {
|
|
sl.markDone( baseurl+'/plugins/'+plugin+'/editor_plugin'+suffix+'.js' );
|
|
sl.markDone( baseurl+'/plugins/'+plugin+'/langs/'+lang+'.js' );
|
|
sl.markDone( baseurl+'/plugins/'+plugin+'/langs/'+lang+'_dlg.js' )
|
|
}
|
|
});
|
|
})();
|