PluginProbe
Easy Bootstrap Shortcode / trunk
Easy Bootstrap Shortcode vtrunk
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 / carousel / carousel_plugin.js

carousel_plugin.js in Easy Bootstrap Shortcode trunk, at shortcode/carousel/carousel_plugin.js

23 lines 603 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 var carousel={
2 title:"Carousel Shortcode",
3 id :'oscitas-form-carousel',
4 pluginName: 'carousel',
5 showprobtn: false
6 };
7 (function() {
8 _create_tinyMCE_options(carousel);
9 })();
10
11 function ebs_return_html_carousel(pluginObj){
12 var form = jQuery('<div id="'+pluginObj.id+'" class="oscitas-container" title="'+pluginObj.title+'"><table id="oscitas-table" class="form-table">\
13 <tr>\
14 <th class="aligncenter"><img src="'+ebs_url+'shortcode/carousel/screenshot.jpg" /></th>\
15 </tr>\
16 </table>\
17 </div>');
18 return form;
19 }
20
21
22 function create_oscitas_carousel(pluginObj){
23 }