This commit is contained in:
2026-05-13 17:11:09 +02:00
commit ea63897455
2785 changed files with 359868 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
/**
*
*
* @author Josh Lobe
* http://ultimatetinymcepro.com
*/
jQuery(document).ready(function($) {
tinymce.PluginManager.add('youTube', function(editor, url) {
editor.addButton('youTube', {
image: url + '/images/youtube.png',
tooltip: 'YouTube Video',
onclick: open_youTube
});
function open_youTube() {
editor.windowManager.open({
title: 'Select YouTube Video',
width: 900,
height: 655,
url: url+'/youTube.php'
})
}
});
});