# easy-bootstrap-shortcodes/trunk/shortcode/video/video_plugin.js

Easy Bootstrap Shortcode, version trunk. 23 lines.

- Page: https://pluginprobe.com/plugins/easy-bootstrap-shortcodes/trunk/code/shortcode/video/video_plugin.js
- Raw: https://pluginprobe.com/plugins/easy-bootstrap-shortcodes/trunk/raw/shortcode/video/video_plugin.js
- Modified: 2016-02-19T20:49:06+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/easy-bootstrap-shortcodes/trunk/code/shortcode/video/video_plugin.js#L10-L20`.

```javascript
var video={
    title:"Video Shortcode",
    id :'oscitas-form-video',
    pluginName: 'video',
    showprobtn: false
};
(function() {
    _create_tinyMCE_options(video);
})();

function ebs_return_html_video(pluginObj){
    var form = jQuery('<div id="'+pluginObj.id+'" class="oscitas-container" title="'+pluginObj.title+'"><table id="oscitas-table" class="form-table">\
			 <tr>\
        <th class="aligncenter"><img src="'+ebs_url+'shortcode/video/screenshot.jpg" /></th>\
        </tr>\
		</table>\
		</div>');
    return form;
}


function create_oscitas_video(pluginObj){
}
```
