Team:UNITN-Trento/JS/Main
From 2013.igem.org
Line 20: | Line 20: | ||
hash = document.location.hash; | hash = document.location.hash; | ||
alert(hash); | alert(hash); | ||
- | if ( | + | if ( hash.indexOf("tour") < 0) { |
$(".tn-sp-tour").css('display' , 'none'); | $(".tn-sp-tour").css('display' , 'none'); | ||
} | } |
Revision as of 12:02, 30 September 2013
/*Acts once the document is loaded*/ $(document).ready(function() { /*Move the tn-main-wrap as child of <body>*/ $("#tn-main-wrap-wrap").prependTo($("body")); /*Move the menubars in the tn-main-wrap*/ $("#menubar.left-menu").appendTo($("#tn-main-wrap")); $("#menubar.right-menu").appendTo($("#tn-main-wrap"));
/*Spoiler JS*/ $(".tn-spoiler div").slideUp(); $(".tn-spoiler a").click(function(e) { e.preventDefault(); $(".tn-spoiler-active").removeClass("tn-spoiler-active"); $(this).parent().addClass("tn-spoiler-active"); $(".tn-spoiler").not(".tn-spoiler-active").children("div").slideUp(); $(".tn-spoiler-active").children("div").slideToggle(); });
/*Tour*/ hash = document.location.hash; alert(hash); if ( hash.indexOf("tour") < 0) { $(".tn-sp-tour").css('display' , 'none'); }
/*Add favicon*/ $("link[rel='shortcut icon']").remove(); $("head").append("<link rel='shortcut icon' type='image/png' href='https://static.igem.org/mediawiki/2013/8/8f/Tn-2013-favicon.png'>"); });