* (bug 20364) Fixed regression in GIF metadata loading
[mediawiki.git] / js2 / mwEmbed / libEmbedVideo / genericEmbed.js
blob5f65868a247197ecdd2de881ca8cb8aa76384456
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         }