Template:Team:Waterloo/JS/baseWiki
From 2014.igem.org
(Difference between revisions)
(6 intermediate revisions not shown) | |||
Line 6: | Line 6: | ||
function alignHeadings(){ | function alignHeadings(){ | ||
var remainingWidth = $("div#topbar").width(); | var remainingWidth = $("div#topbar").width(); | ||
- | |||
- | |||
- | |||
- | |||
- | |||
var allheadings = $("ul#headings >li"); | var allheadings = $("ul#headings >li"); | ||
allheadings.css("display", "block"); | allheadings.css("display", "block"); | ||
Line 16: | Line 11: | ||
allheadings.width(remainingWidth / (allheadings.length + 0.5)) | allheadings.width(remainingWidth / (allheadings.length + 0.5)) | ||
.css({"text-align":"center","line-height":"150%"}); | .css({"text-align":"center","line-height":"150%"}); | ||
- | |||
} | } | ||
Line 43: | Line 37: | ||
} | } | ||
- | $('ul.tabs').each(function(){ | + | /*$('ul.tabs').each(function(){ |
- | + | ||
- | + | ||
var $active, $content, $links = $(this).find('a'); | var $active, $content, $links = $(this).find('a'); | ||
- | |||
- | |||
$active = $($links.filter('[href="'+location.hash+'"]')[0] || $links[0]); | $active = $($links.filter('[href="'+location.hash+'"]')[0] || $links[0]); | ||
- | $active.addClass(' | + | $active.addClass('selected'); |
$content = $($active[0].hash); | $content = $($active[0].hash); | ||
- | |||
$links.not($active).each(function () { | $links.not($active).each(function () { | ||
$(this.hash).hide(); | $(this.hash).hide(); | ||
}); | }); | ||
- | |||
$(this).on('click', 'a', function(e){ | $(this).on('click', 'a', function(e){ | ||
- | + | ||
- | $active.removeClass(' | + | $active.removeClass('selected'); |
$content.hide(); | $content.hide(); | ||
- | |||
$active = $(this); | $active = $(this); | ||
$content = $(this.hash); | $content = $(this.hash); | ||
- | + | $active.addClass('selected'); | |
- | $active.addClass(' | + | |
$content.show(); | $content.show(); | ||
- | |||
e.preventDefault(); | e.preventDefault(); | ||
}); | }); | ||
- | }); | + | });*/ |
- | + | ||
</script> | </script> | ||
</html> | </html> |
Latest revision as of 05:06, 16 October 2014