Sha256: c08188c087efd4afb7bcf50f7e623a44f0912fc3b24d1f60bc936e786b4530c9

Contents?: true

Size: 928 Bytes

Versions: 4

Compression:

Stored size: 928 Bytes

Contents

/*
 Modifica e usa come vuoi

 Creato da TurboLab.it - 01/01/2014 (buon anno!)
*/
CKEDITOR.dialog.add("tliyoutubeDialog",function(c){return{title:"Insert YouTube video",minWidth:400,minHeight:75,contents:[{id:"tab-basic",label:"Basic Settings",elements:[{type:"text",id:"youtubeURL",label:"URL to YouTube video (should start with http:// or https://):"}]}],onOk:function(){var b=this.getValueOf("tab-basic","youtubeURL").trim().match(/v=([^&$]+)/i);if(null==b||""==b||""==b[0]||""==b[1])return alert("Invalid URL. Expecting something like:\n\n\t http://www.youtube.com/watch?v=abcdef \n\n Please copy & paste the youtube URL from your browser's location bar."),
!1;var a=c.document.createElement("iframe");a.setAttribute("width","560");a.setAttribute("height","315");a.setAttribute("src","//www.youtube.com/embed/"+b[1]+"?rel=0");a.setAttribute("frameborder","0");a.setAttribute("allowfullscreen","1");c.insertElement(a)}}});

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
effective_ckeditor-1.4.2 app/assets/javascripts/ckeditor/plugins/tliyoutube/dialogs/tliyoutube.js
effective_ckeditor-1.4.0 app/assets/javascripts/ckeditor/plugins/tliyoutube/dialogs/tliyoutube.js
effective_ckeditor-1.3.1 app/assets/javascripts/ckeditor/plugins/tliyoutube/dialogs/tliyoutube.js
effective_ckeditor-1.3.0 app/assets/javascripts/ckeditor/plugins/tliyoutube/dialogs/tliyoutube.js