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 / widget / widget_plugin.js

widget_plugin.js in Easy Bootstrap Shortcode trunk, at shortcode/widget/widget_plugin.js

23 lines 587 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 var widget={
2 title:"Widget Shortcode",
3 id :'oscitas-form-widget',
4 pluginName: 'widget',
5 showprobtn: false
6 };
7 (function() {
8 _create_tinyMCE_options(widget);
9 })();
10
11 function ebs_return_html_widget(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/widget/screenshot.jpg" /></th>\
15 </tr>\
16 </table>\
17 </div>');
18 return form;
19 }
20
21
22 function create_oscitas_widget(pluginObj){
23 }