Team:Freiburg/Templates/html/js.html

From 2014.igem.org

(Difference between revisions)
 
(11 intermediate revisions not shown)
Line 3: Line 3:
<script>
<script>
function invertColors() {
function invertColors() {
-
  $('html').toggleClass('inverted-colors');
+
      var $html = $('html');
-
};
+
      $html.toggleClass('inverted-colors');
 +
    };
(function(){
(function(){
   var DEBUG = false;
   var DEBUG = false;
Line 90: Line 91:
           }
           }
         });
         });
 +
      });
 +
 +
 +
     
 +
      $('.svg-container').each(function(){
 +
        var $this = $(this);
 +
        if ($this.find('svg a').length === 0){
 +
          $this.magnificPopup({
 +
            items: {
 +
                src: $this.clone(),
 +
                type: 'inline'
 +
            }
 +
          });
 +
        }
       });
       });
Line 97: Line 112:
           type: 'iframe'
           type: 'iframe'
         });
         });
-
      });
 
-
 
-
      $('body').scrollspy({
 
-
        target: '#content-nav',
 
-
        offset: $(window).height()/4
 
       });
       });
Line 162: Line 172:
     });
     });
</script>
</script>
 +
 +
<script>
 +
    // remove url in front of anchor links so scroll spy behaves correctly
 +
    var navLinks = $('#content-nav .nav a');
 +
 +
    // check all links' href attributes for equality with url
 +
    var currentPath = location.pathname;
 +
    for (var i=0;i<navLinks.length;i++) {
 +
      var href = navLinks[i].getAttribute('href')
 +
      var indexOfPath = href.indexOf(currentPath);
 +
      if (indexOfPath === -1) continue;
 +
      if (indexOfPath > 2) continue;
 +
 +
      var indexOfSharp = href.indexOf('#');
 +
      // check if the url part of the href ends with our location
 +
      var hreflength = href.length;
 +
      if (indexOfSharp !== -1) hreflength = indexOfSharp;
 +
      if (indexOfPath >= hreflength - currentPath.length - 1){
 +
        if (indexOfSharp === -1) {
 +
          navLinks[i].setAttribute('href', '#');
 +
          navLinks[i].setAttribute('class', 'active');
 +
        } else {
 +
          navLinks[i].setAttribute('href', href.slice(indexOfSharp));
 +
        }
 +
      }
 +
    }
 +
 +
    // initialize scrollspy
 +
    $('body').scrollspy({
 +
      target: '#content-nav',
 +
      offset: $(window).height()/4
 +
    });
 +
 +
    // different click navigation for first link
 +
    $('#content-nav .nav > li > a ').click(function(e){
 +
      var $parent = $(this.parentNode);
 +
      var children = $parent.children('ul');
 +
      // prevent redirect if we have children
 +
      if (children.length == 0) return;
 +
      e.preventDefault();
 +
 +
      // open up the nav otherwise
 +
      $parent.toggleClass('active');
 +
    });
 +
  </script>
<script src="/Team:Freiburg/js/jquery.qtip.min.js?action=raw&ctype=text/javascript"></script>
<script src="/Team:Freiburg/js/jquery.qtip.min.js?action=raw&ctype=text/javascript"></script>

Latest revision as of 22:56, 17 October 2014