/* * Simple embed object for unknown application/ogg plugin */ ( function( mw, $ ) { "use strict"; mw.EmbedPlayerGeneric = { // List of supported features of the generic plugin supports: { 'playHead':false, 'pause':false, 'stop':true, 'fullscreen':false, 'timeDisplay':false, 'volumeControl':false }, // Instance name: instanceOf:'Generic', /* * Generic embed html * * @return {String} * embed code for generic ogg plugin */ embedPlayerHTML: function() { $( this ).html( '' ); } }; } )( mediaWiki, jQuery );