Team:NTU-Taida/Templates/Footer
From 2012.igem.org
(Difference between revisions)
m |
|||
(77 intermediate revisions not shown) | |||
Line 1: | Line 1: | ||
<html> | <html> | ||
- | <script type="text/javascript" src=" | + | <footer class="footer"> |
- | <script type="text/javascript" src=" | + | <div class="container" height='50px'> |
+ | </div> | ||
+ | </footer> | ||
+ | <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> | ||
+ | <script type="text/javascript" src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.1.1/js/bootstrap.min.js"></script> | ||
+ | <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> | ||
<script type="text/javascript"> | <script type="text/javascript"> | ||
$(document).ready(function() { | $(document).ready(function() { | ||
- | $("p:empty").remove(); | + | $("p:empty").remove(); |
- | $('.carousel').carousel({ | + | $('.carousel').carousel({ |
interval: 3000 | interval: 3000 | ||
}); | }); | ||
+ | // table formatting | ||
+ | $('table.wikitable').removeClass('wikitable').addClass('table table-bordered').css({ | ||
+ | 'margin': '1em 1em 1em 0' | ||
+ | }); | ||
+ | |||
+ | //for sidebar and scroll spy | ||
+ | $('.toc').hide(); | ||
+ | var activeItem = "</html>{{{ActiveNavbar|Home}}}<html>"; | ||
+ | /*if (activeItem.split(',')[0] == "Project"){ | ||
+ | // project sidebar | ||
+ | console.log('Enter Project sideabr mode'); | ||
+ | }else{*/ | ||
+ | // all other sidebars | ||
+ | $('#toc>tbody>tr>td>ul>li.toclevel-1>a').each(function(index){ | ||
+ | $('ul.sub-navlist').append('<li><a href="'+ $(this).attr('href') +'-sec">'+ $(this).children('span.toctext').text()+'</a></li>'); | ||
+ | // abbrSubnavText(); | ||
+ | if(index==0){ | ||
+ | $('h2[class!="firstHeading"]').has('span.mw-headline').eq(index).before('<section id="'+$(this).attr('href').slice(1)+'-sec">') | ||
+ | }else{ | ||
+ | $('h2[class!="firstHeading"]').has('span.mw-headline').eq(index).before('</section><section id="'+$(this).attr('href').slice(1)+'-sec">') | ||
+ | } | ||
+ | }); | ||
+ | // } | ||
+ | $('.toc').remove(); | ||
+ | |||
+ | function abbrSubnavText(displayText){ | ||
+ | if (displayText.length >= 23){ | ||
+ | var arrayAbbrText = displayText.split(' '); | ||
+ | var newDisplayText=""; | ||
+ | var nextDisplayText=""; | ||
+ | var i = -1; | ||
+ | var state = false; | ||
+ | do{ | ||
+ | i++; | ||
+ | newDisplayText = nextDisplayText; | ||
+ | nextDisplayText = nextDisplayText + ' ' + arrayAbbrText[i]; | ||
+ | if (i < arrayAbbrText.length){ | ||
+ | if (nextDisplayText.length < 20){ | ||
+ | state = true; | ||
+ | } | ||
+ | else{ | ||
+ | state = false; | ||
+ | } | ||
+ | }else{ | ||
+ | state = false; | ||
+ | } | ||
+ | }while (state) | ||
+ | return newDisplayText + ' …'; | ||
+ | }else{ | ||
+ | return displayText; | ||
+ | } | ||
+ | } | ||
+ | |||
+ | $('h2[class!="firstHeading"]').has('span.mw-headline').wrap('<div class="page-header"></div>'); | ||
+ | |||
+ | //$('#toc').remove(); | ||
+ | |||
+ | $('body').attr({ | ||
+ | 'data-spy': 'scroll', | ||
+ | 'data-target': ".my-sidebar", | ||
+ | 'data-offset': '60' | ||
+ | }); | ||
+ | $('.my-sidebar-nav').affix({ | ||
+ | offset: { | ||
+ | top: function () { return $(window).width() <= 980 ? 60 : 0}, | ||
+ | bottom: 0 | ||
+ | } | ||
+ | }); | ||
+ | $('body[data-spy="scroll"]').scrollspy('refresh').on('activate', reactiveNavbar); | ||
+ | |||
+ | /*jQuery('ul.nav li.dropdown').hover(function() { | ||
+ | jQuery(this).closest('.dropdown-menu').stop(true, true).show(); | ||
+ | jQuery(this).addClass('open'); | ||
+ | }, function() { | ||
+ | jQuery(this).closest('.dropdown-menu').stop(true, true).hide(); | ||
+ | jQuery(this).removeClass('open'); | ||
+ | });*/ | ||
+ | |||
+ | function reactiveNavbar(){ | ||
+ | //activate wiki-menu | ||
+ | //$('#wiki-navbar.nav > li:contains("</html>{{{ActiveNavbar|Home}}}<html>")').addClass('active'); | ||
+ | $('#nav-</html>{{{ActiveNavbar|Home}}}<html>').addClass('active'); | ||
+ | } | ||
+ | |||
+ | //usermenu dropdown | ||
if ($('#pt-logout').length){ | if ($('#pt-logout').length){ | ||
// login | // login | ||
Line 22: | Line 112: | ||
} | } | ||
- | + | reactiveNavbar(); | |
}); | }); | ||
+ | |||
+ | |||
</script> | </script> | ||
<p></html> | <p></html> |
Latest revision as of 17:50, 25 October 2012