PluginProbe
Embed Plus for YouTube Gallery, Livestream and Lazy Loading with Facades / 11.3
Embed Plus for YouTube Gallery, Livestream and Lazy Loading with Facades v11.3
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 / embedplusstats_mce.js

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

30 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 (function() {
2 tinymce.create('tinymce.plugins.Embedplusstats_youtubeprefs', {
3 init : function(ed, url) {
4 var plep = new Image();
5 plep.src = url+'/../btn_embedplusstats.png';
6 ed.addButton('embedplusstats_youtubeprefs', {
7 title : 'How much are your visitors actually watching the videos you post? Click here to start using this popular feature from EmbedPlus Labs ยป',
8 onclick : function(ev) {
9 window.open(epbasesite + '/dashboard/pro-easy-video-analytics.aspx?ref=wysiwygbutton&prokey=' + epprokey + '&domain=' + escape(window.location.toString()), '_blank');
10 }
11 });
12
13 },
14 createControl : function(n, cm) {
15 return null;
16 },
17 getInfo : function() {
18 return {
19 longname : "Embedplus Video Analytics Dashboard",
20 author : 'EmbedPlus',
21 authorurl : 'http://www.embedplus.com/',
22 infourl : 'http://www.embedplus.com/',
23 version : epversion
24 };
25 }
26 });
27 tinymce.PluginManager.add('embedplusstats_youtubeprefs', tinymce.plugins.Embedplusstats_youtubeprefs);
28
29 })();
30