39f7f5c510defaceb888e811c595b7854d7b43cb
[lhc/web/wiklou.git] / js2 / mwEmbed / libEmbedVideo / genericEmbed.js
1 /* the most simple implementation used for unknown application/ogg plugin */
2 var genericEmbed = {
3 supports: {
4 'play_head':false,
5 'pause':false,
6 'stop':true,
7 'fullscreen':false,
8 'time_display':false,
9 'volume_control':false
10 },
11 instanceOf:'genericEmbed',
12 getEmbedHTML:function() {
13 return '<object type="application/ogg" ' +
14 'width="' + this.width + '" height="' + this.height + '" ' +
15 'data="' + this.getURI( this.seek_time_sec ) + '"></object>';
16 }
17 };