PluginProbe
Embed Plus for YouTube Gallery, Livestream and Lazy Loading with Facades / 10.1
Embed Plus for YouTube Gallery, Livestream and Lazy Loading with Facades v10.1
trunk 1.0 1.1 10.0 10.1 10.2 10.3 10.4 10.5 10.6 10.7 10.8 10.9 11.0 11.0.1 11.1 11.2 11.3 11.3.1 11.4 11.5 11.6 11.7 11.7.1 11.8 All 143 releases
youtube-embed-plus / scripts / embedplus_mce_prefs.js

embedplus_mce_prefs.js in Embed Plus for YouTube Gallery, Livestream and Lazy Loading with Facades 10.1, at scripts/embedplus_mce_prefs.js

30 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 (function() {
2
3 tinymce.create('tinymce.plugins.Embedplus_youtubeprefs', {
4 init : function(ed, url) {
5 var plep = new Image();
6 plep.src = url+'/../images/btnprefsoff.png';
7 ed.addButton('embedplus_youtubeprefs', {
8 title : "YouTube Settings Page Shortcut (Opens new tab to leave this editor tab intact)",
9 onclick : function(ev) {
10 window.open(eppluginadminurl);
11 }
12 });
13 },
14 createControl : function(n, cm) {
15 return null;
16 },
17 getInfo : function() {
18 return {
19 longname : "YouTube Settings",
20 author : 'EmbedPlus',
21 authorurl : 'http://www.embedplus.com/',
22 infourl : 'http://www.embedplus.com/',
23 version : epversion
24 };
25 }
26 });
27
28 tinymce.PluginManager.add('embedplus_youtubeprefs', tinymce.plugins.Embedplus_youtubeprefs);
29
30 })();