$(function() { $('video').mediaelementplayer({ mode: 'auto_plugin', usePluginFullScreen: true, enableAutosize: true, pluginPath: 'assets/js/lib/', features: ['playpause', 'volume','fullscreen'] }); $('audio').mediaelementplayer(); // activate tab via hash and default to video function setTabToHash() { var activeTab = $('.nav-tabs a[href=' + window.location.hash + ']').tab('show'); if (activeTab.length === 0) { window.location.hash = '#video'; } } // change hash on tab change $('.nav-tabs').on('shown.bs.tab', 'a', function (e) { window.location.hash = e.target.hash; }); // adjust tabs when hash changes $(window).on('hashchange', setTabToHash).trigger('hashchange'); $('.click-to-irc').one('click', function() { var $irc = $(this), $iframe = $(this).find('iframe'); $iframe.on('load', function() { $irc.addClass('active'); }).attr('src', $iframe.data('src')); }); });