2017-04-15 01:34:36 +03:00

71 lines
2.5 KiB
JavaScript
Executable File

/*
* Embed Media Dialog based on http://www.fluidbyte.net/embed-youtube-vimeo-etc-into-ckeditor
*
* Plugin name: mediaembed
* Menu button name: MediaEmbed
*
* Youtube Editor Icon
* http://paulrobertlloyd.com/
*
* @author Fabian Vogelsteller [frozeman.de]
* @version 0.5
*/
( function() {
CKEDITOR.plugins.add( 'mediaembed',
{
icons: 'mediaembed', // %REMOVE_LINE_CORE%
hidpi: true, // %REMOVE_LINE_CORE%
init: function( editor )
{
var me = this;
CKEDITOR.dialog.add( 'MediaEmbedDialog', function (instance)
{
return {
title : 'Embed Media',
minWidth : 550,
minHeight : 200,
contents :
[
{
id : 'iframe',
expand : true,
elements :[{
id : 'embedArea',
type : 'textarea',
label : 'Paste Embed Code Here',
'autofocus':'autofocus',
setup: function(element){
},
commit: function(element){
}
}]
}
],
onOk: function() {
for (var i = 0; i < window.frames.length; i++) {
if (window.frames[i].name == 'iframeMediaEmbed') {
var content = window.frames[i].document.getElementById("embed").value;
}
}
// console.log(this.getContentElement( 'iframe', 'embedArea' ).getValue());
div = instance.document.createElement('div');
div.setHtml(this.getContentElement('iframe', 'embedArea').getValue());
instance.insertElement(div);
}
};
} );
editor.addCommand( 'MediaEmbed', new CKEDITOR.dialogCommand( 'MediaEmbedDialog',
{ allowedContent: 'iframe[*]' }
) );
editor.ui.addButton( 'MediaEmbed',
{
label: 'Embed Media',
command: 'MediaEmbed',
toolbar: 'mediaembed'
} );
}
} );
} )();