Files
2026-05-13 17:11:09 +02:00

18 lines
420 B
JavaScript

tinymce.PluginManager.add('youTube', function(editor, url) {
editor.addButton('youTube', {
image: url + '/images/youtube.png',
tooltip: 'cpYouTube',
onclick: open_youTube
});
function open_youTube() {
editor.windowManager.open({
title: 'cPad > YouTube',
width: 900,
height: 655,
url: url + '/youTube.php'
})
}
});