Team:Heidelberg/Templates/Footer

From 2013.igem.org

(Difference between revisions)
m
m
 
(One intermediate revision not shown)
Line 2: Line 2:
<!-- The JavaScript -->
<!-- The JavaScript -->
              
              
-
             <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js?action=raw&ctype=text/javascript"></script>
+
             <script src="https://2013.igem.org/Team:Heidelberg/Templates/jqueryjs?action=raw&ctype=text/javascript"></script>
             <script src="https://2013.igem.org/Team:Heidelberg/Templates/bootstrapjs?action=raw&ctype=text/javascript"></script>
             <script src="https://2013.igem.org/Team:Heidelberg/Templates/bootstrapjs?action=raw&ctype=text/javascript"></script>
             <script src="https://2013.igem.org/Team:Heidelberg/Templates/holderjs?action=raw&ctype=text/javascript"></script>
             <script src="https://2013.igem.org/Team:Heidelberg/Templates/holderjs?action=raw&ctype=text/javascript"></script>
-
             <script src="https://2013.igem.org/Team:Heidelberg/Templates/jqueryjs?action=raw&ctype=text/javascript"></script>
+
              
             <script type="text/javascript">
             <script type="text/javascript">
-
                 $(function(){
+
                 $(function() {
                     //script for hiding/showing only 3 months
                     //script for hiding/showing only 3 months
                     $($('.month_tab').slice(3)).hide();
                     $($('.month_tab').slice(3)).hide();
                     $('#forwards').click(function(e) {
                     $('#forwards').click(function(e) {
-
                            var visible = $('.month_tab:visible');
+
                        var visible = $('.month_tab:visible');
-
                            var next = $(visible[visible.length - 1]).next('.month_tab');
+
                        var next = $(visible[visible.length - 1]).next('.month_tab');
-
                            if (next.length > 0) {
+
                        if (next.length > 0) {
-
                                $(visible[0]).hide();
+
                            $(visible[0]).hide();
-
                                next.show();
+
                            next.show();
-
                            }
+
                         }
-
                            e.preventDefault();
+
                         e.preventDefault();
-
                         });
+
-
                         $('#backwards').click(function(e) {
+
-
                            var visible = $('.month_tab:visible');
+
-
                            var prev = $(visible[0]).prev('.month_tab');
+
-
                            if (prev.length > 0) {
+
-
                                $(visible[visible.length - 1]).hide();
+
-
                                prev.show();
+
-
                            }
+
-
                            e.preventDefault();
+
-
                        });
+
                     });
                     });
-
 
+
                    $('#backwards').click(function(e) {
-
                $(window).load(function() {
+
                        var visible = $('.month_tab:visible');
 +
                        var prev = $(visible[0]).prev('.month_tab');
 +
                        if (prev.length > 0) {
 +
                            $(visible[visible.length - 1]).hide();
 +
                            prev.show();
 +
                        }
 +
                        e.preventDefault();
 +
                    });
 +
               
                     $('#myCarousel').carousel({interval: 0});
                     $('#myCarousel').carousel({interval: 0});
                     $('div').scrollspy({ target: '#navbarExample' });
                     $('div').scrollspy({ target: '#navbarExample' });
 +
 +
                   
 +
                    //Month-week dependecy
 +
                    $('#may').click(function(e) {
 +
                        $('.item.active').removeClass('active')
 +
                        $('.active.month_tab').removeClass('active')
 +
                        $('#may_weeks').addClass('active')
 +
                        $('#may').addClass('active')
 +
                        e.preventDefault();
 +
                    });
 +
 +
                    $('#june').click(function(e) {
 +
                        $('.item.active').removeClass('active')
 +
                        $('.active.month_tab').removeClass('active')
 +
                        $('#june_weeks').addClass('active')
 +
                        $('#june').addClass('active')
 +
                        e.preventDefault();
 +
                    });
                 });
                 });
             </script>
             </script>
</html>
</html>

Latest revision as of 09:36, 24 September 2013