PluginProbe
WpStream – Live Streaming, Video on Demand, Pay Per View / 2.07
WpStream – Live Streaming, Video on Demand, Pay Per View v2.07
4.14.0 4.13.2 4.13.1 4.13 4.12.5 4.12.4 4.12.3 4.12.2 4.12.1 4.12 4.4.4 4.4.5 4.4.6 4.4.7 4.4.8 4.4.9 4.5 4.5.1 4.5.11 4.5.11.1 4.5.11.2 4.5.11.4 4.5.11.5 4.5.11.6 4.5.12 All 180 releases
wpstream / js / shortcodes.js

shortcodes.js in WpStream – Live Streaming, Video on Demand, Pay Per View 2.07, at js/shortcodes.js

40 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 (function () {
2 "use strict";
3 tinymce.create('tinymce.plugins.wpstream_player', {
4 init: function (ed, url) {
5 ed.addButton('wpstream_player', {
6 title: 'WpStream Player',
7 image: url + '/button.png',
8 onclick: function () {
9 ed.selection.setContent('[wpstream_player id="Add here the live stream id or the video id" ][/wpstream_player]');
10 }
11 });
12 },
13 createControl: function (n, cm) {
14 return null;
15 }
16 });
17 tinymce.PluginManager.add('wpstream_player', tinymce.plugins.wpstream_player);
18 })();
19
20
21 (function () {
22 tinymce.create('tinymce.plugins.wpstream_list_products', {
23
24 init: function (ed, url) {
25 ed.addButton('wpstream_list_products', {
26 title: 'WpStream List Products',
27 image: url + '/list_media.png',
28 onclick: function () {
29 ed.selection.setContent('[wpstream_list_products media_number="No of media" product_type="Free Live Channel or Free Video"][/wpstream_list_products]');
30 }
31 });
32 },
33 createControl: function (n, cm) {
34 return null;
35 }
36 });
37 tinymce.PluginManager.add('wpstream_list_products', tinymce.plugins.wpstream_list_products);
38 })();
39
40