Difference between revisions of "Team:DTU-Denmark/wikijs"

(Undo revision 222891 by Mvand (talk))
Line 1: Line 1:
 
if (window.location.hostname == '2015.igem.org'){
 
if (window.location.hostname == '2015.igem.org'){
   $('style')[0].disabled=true;
+
   //$('style')[0].disabled=true;
   $('link')[8].disabled=true;
+
   $('link[name*="load.php"]')[0].disabled=true;
 
   $('#bodyContent').find('p').first().css('display', 'none');
 
   $('#bodyContent').find('p').first().css('display', 'none');
 
}
 
}

Revision as of 15:40, 14 September 2015

if (window.location.hostname == '2015.igem.org'){

 //$('style')[0].disabled=true;
 $('link[name*="load.php"]')[0].disabled=true;
 $('#bodyContent').find('p').first().css('display', 'none');

}

$(document).ready(function() {

 // jQuery to collapse the navbar on scroll
 $(window).scroll(function () {
   if ($(window).scrollTop() > $(".hero").height() + 30) {
       $(".navbar-fixed-top").addClass("top-nav-collapse");
       $(".extrabar").removeClass("hidden");
     } else {
       $(".navbar-fixed-top").removeClass("top-nav-collapse");
       $(".extrabar").addClass("hidden");
     }
 });
 // jQuery for page scrolling feature - requires jQuery Easing plugin
 $(function () {
   $('a.page-scroll').bind('click', function (event) {
     var $anchor = $(this);
     $('html, body').stop().animate({
       scrollTop: $($anchor.attr('href')).offset().top - 70
     }, 1500, 'easeInOutExpo');
     event.preventDefault();
   });
 });
 $(function () {
   $('[data-toggle="tooltip"]').tooltip();
 });

});