mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Props swissspidy. Fixes #34272. git-svn-id: https://develop.svn.wordpress.org/trunk@35397 602fd350-edb4-49c9-b593-d223f7449a82
18 lines
444 B
JavaScript
18 lines
444 B
JavaScript
(function ( tinymce ) {
|
|
'use strict';
|
|
|
|
tinymce.PluginManager.add( 'wpembed', function ( editor, url ) {
|
|
editor.on( 'init', function () {
|
|
var scriptId = editor.dom.uniqueId();
|
|
|
|
var scriptElm = editor.dom.create( 'script', {
|
|
id: scriptId,
|
|
type: 'text/javascript',
|
|
src: url + '/../../../wp-embed.js'
|
|
} );
|
|
|
|
editor.getDoc().getElementsByTagName( 'head' )[ 0 ].appendChild( scriptElm );
|
|
} );
|
|
} );
|
|
})( window.tinymce );
|