Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (function() {
- CKEDITOR.plugins.add("mediaembed", {
- init: function(a) {
- CKEDITOR.dialog.add("MediaEmbedDialog", function(a) {
- return {
- title: "Embed Media",
- minWidth: 550,
- minHeight: 200,
- contents: [{
- id: "iframe",
- expand: !0,
- elements: [{
- id: "embedArea",
- type: "textarea",
- label: "Paste Embed Code Here",
- autofocus: "autofocus",
- setup: function() {},
- commit: function() {}
- }]
- }],
- onOk: function() {
- var b = a.document.createElement("div");
- b.setHtml(this.getContentElement("iframe", "embedArea").getValue());
- b.className = "video-container"; //My addition
- a.insertElement(b)
- }
- }
- });
- a.addCommand("MediaEmbed",
- new CKEDITOR.dialogCommand("MediaEmbedDialog", {
- allowedContent: "iframe[*]"
- }));
- a.ui.addButton("MediaEmbed", {
- label: "Embed Media",
- command: "MediaEmbed",
- toolbar: "mediaembed"
- })
- }
- })
- })();
Advertisement
Add Comment
Please, Sign In to add comment