PluginProbe
Easy Bootstrap Shortcode / 2.5
Easy Bootstrap Shortcode v2.5
trunk 2.4.0 2.5 3.4 3.5 3.6 3.7 4.0.0 4.4 4.5 4.5.4 5.0.0 5.0.1 5.0.2
easy-bootstrap-shortcodes / shortcode / toggles / toggles_plugin.js

toggles_plugin.js in Easy Bootstrap Shortcode 2.5, at shortcode/toggles/toggles_plugin.js

27 lines 1.2 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.oscitasToggles', {
3 init : function(ed, url) {
4 ed.addButton('oscitastoggles', {
5 title : 'Toggle/Accordion Shortcode',
6 image : url+'/icon.png',
7 onclick : function() {
8 ed.selection.setContent('[toggles class="yourcustomclass"]<br/>[toggle title="Accordion number 1" class="in"]Toggle 1 content goes here.[/toggle]<br/>[toggle title="Accordion number 2"]Toggle 2 content goes here.[/toggle]<br/>[toggle title="Accordion number 3"]Toggle 3 content goes here.[/toggle]<br/>[toggle title="Accordion number 4"]Toggle 4 content goes here.[/toggle]<br/>[/toggles]');
9 }
10 });
11 },
12 createControl : function(n, cm) {
13 return null;
14 },
15 getInfo : function() {
16 return {
17 longname : "Toggle Shortcode",
18 author : 'Oscitas Themes',
19 authorurl : 'http://www.oscitasthemes.com/',
20 infourl : 'http://www.oscitasthemes.com/',
21 version : "2.0.0"
22 };
23 }
24 });
25 tinymce.PluginManager.add('oscitastoggles', tinymce.plugins.oscitasToggles);
26 })();
27