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.
 
 
 
 
 

18 lines
444 B

  1. (function ( tinymce ) {
  2. 'use strict';
  3. tinymce.PluginManager.add( 'wpembed', function ( editor, url ) {
  4. editor.on( 'init', function () {
  5. var scriptId = editor.dom.uniqueId();
  6. var scriptElm = editor.dom.create( 'script', {
  7. id: scriptId,
  8. type: 'text/javascript',
  9. src: url + '/../../../wp-embed.js'
  10. } );
  11. editor.getDoc().getElementsByTagName( 'head' )[ 0 ].appendChild( scriptElm );
  12. } );
  13. } );
  14. })( window.tinymce );