Difference between revisions of "Team:Imperial College/Templates/NavBar"

Line 14: Line 14:
 
                             acc[i].addEventListener("click", function() {
 
                             acc[i].addEventListener("click", function() {
 
                                 this.classList.toggle("active");
 
                                 this.classList.toggle("active");
                                 var panell = this.nextElementSibling;
+
                                 var panel = this.nextElementSibling;
                                 if (panell.style.maxHeight) {
+
                                 if (panel.style.maxHeight) {
                                     panell.style.maxHeight = null;
+
                                     panel.style.maxHeight = null;
 
                                 } else {
 
                                 } else {
                                     panell.style.maxHeight = (panell.scrollHeight + "px");   
+
                                     panel.style.maxHeight = (panel.scrollHeight + "px");   
 
                                 }
 
                                 }
 
                             });
 
                             });

Revision as of 18:09, 1 October 2018