Fix javascript bug

This commit is contained in:
Alexander Agnarson 2017-06-03 14:48:03 +02:00
parent 516bd0b784
commit 9db894f171

View file

@ -51,7 +51,7 @@ jQuery(document).ready(function($) {
$this.parent().next().children('.alx-tab').stop(true,true).hide()
.siblings( $this.find('a').attr('href') ).fadeIn();
e.preventDefault();
}).children( window.location.hash ? 'a[href=' + window.location.hash + ']' : 'a:first' ).trigger('click');
}).children( window.location.hash ? 'a[href="' + window.location.hash + '"]' : 'a:first' ).trigger('click');
})();