(manual video) |
(dotted not solid line) |
||
Line 5: | Line 5: | ||
function navigation_minus_three() { | function navigation_minus_three() { | ||
$('#navigation').find('a').each(function() { | $('#navigation').find('a').each(function() { | ||
− | + | if ($(this).attr("href").endsWith('Plant') ) { | |
− | if ($(this).attr("href").endsWith('Plant') ) { | + | $(this).parent().remove(); |
− | + | } else if ($(this).attr("href").endsWith('Software') ) { | |
− | } else if ($(this).attr("href").endsWith('Software') ) { | + | $(this).parent().remove(); |
− | + | } else if ($(this).attr("href").endsWith('Hardware') ) { | |
− | } else if ($(this).attr("href").endsWith('Hardware') ) { | + | $(this).parent().remove(); |
− | + | } else { | |
− | } else { | + | console.log( $(this).attr("href") ); |
− | + | } | |
− | } | + | |
}); | }); | ||
} | } | ||
Line 20: | Line 19: | ||
function active_based_href() { | function active_based_href() { | ||
$('#footerNavList').find('a').each(function() { | $('#footerNavList').find('a').each(function() { | ||
− | + | if ( $(this).attr('href') === '#') { | |
− | if ($(this).attr("href").startsWith('/'+wgPageName) ) { | + | // Video |
− | + | $(this).attr('href', 'https://video.igem.org/videos/watch/7a0fee51-a637-4caf-aa97-a1d9bcafd3ba'); | |
− | + | } | |
− | } | + | if ($(this).attr("href").startsWith('/'+wgPageName) ) { |
− | + | // .active | |
+ | $(this).css({'color':'white'}); | ||
+ | $(this).parent().css({'border-left':'2px dotted white', 'padding-left':'2px', 'margin-left':'-2px'}); | ||
+ | } | ||
}); | }); | ||
} | } |
Revision as of 01:41, 12 October 2020