| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/engineering/wp-content/plugins/nextgen-gallery/static/Legacy/ |
Upload File : |
/*
* Overview Page JS for NextGEN Gallery: Provides JS for
* navigating tabs on the NextGEN Overview page.
*
*/
(function($) {
$(function() {
$('#ngg-tabs-wrapper').find('a').on('click', function () {
$('#ngg-tabs-wrapper').find('a').removeClass('nav-tab-active');
$('.ngg-tab').removeClass('active');
var id = jQuery(this).attr('id').replace('-link', '');
$('#' + id).addClass('active');
$(this).addClass('nav-tab-active');
});
var activeTab = window.location.hash.replace('#top#', '');
if ('' === activeTab) {
activeTab = $('.ngg-tab').attr('id');
}
$('#' + activeTab).addClass('active');
$('#' + activeTab + '-tab').addClass('nav-tab-active');
$('.nav-tab-active').trigger('click');
});
})(jQuery);