##// END OF EJS Templates
Fix mulitple tab navigation highlighting and content hiding (#20906)....
Jean-Philippe Lang -
r14346:0b19f6ce51ae
parent child
Show More
@@ -315,8 +315,8 function toggleMultiSelect(el) {
315 }
315 }
316
316
317 function showTab(name, url) {
317 function showTab(name, url) {
318 $('div#content .tab-content').hide();
318 $('#tab-content-' + name).parent().find('.tab-content').hide();
319 $('div.tabs a').removeClass('selected');
319 $('#tab-content-' + name).parent().find('div.tabs a').removeClass('selected');
320 $('#tab-content-' + name).show();
320 $('#tab-content-' + name).show();
321 $('#tab-' + name).addClass('selected');
321 $('#tab-' + name).addClass('selected');
322 //replaces current URL with the "href" attribute of the current link
322 //replaces current URL with the "href" attribute of the current link
General Comments 0
You need to be logged in to leave comments. Login now