mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-23 08:11:08 +00:00
16 lines
310 B
JavaScript
16 lines
310 B
JavaScript
/* globals jQuery , sowb */
|
|
|
|
var sowb = window.sowb || {};
|
|
|
|
jQuery( function ( $ ) {
|
|
sowb.setupVideoPlayers = function() {
|
|
var $ = jQuery;
|
|
$('video.sow-video-widget').mediaelementplayer();
|
|
};
|
|
sowb.setupVideoPlayers();
|
|
|
|
$( sowb ).on( 'setup_widgets', sowb.setupVideoPlayers );
|
|
} );
|
|
|
|
window.sowb = sowb;
|