frontend.js 272 B

123456789101112
  1. (function($) {
  2. $(function() {
  3. $('.fl-embed-video').fitVids();
  4. // Fix multiple videos where autoplay is enabled.
  5. if ( $('.fl-module-video video').length > 1 ) {
  6. $('.fl-module-video video').mediaelementplayer( {pauseOtherPlayers: false} );
  7. }
  8. });
  9. })(jQuery);