adds privacy policy and page footer
This commit is contained in:
@ -1,9 +1,9 @@
|
||||
/* Toggle between adding and removing the "responsive" class to topnav when the user clicks on the icon */
|
||||
/* Toggle between adding and removing the "responsive" class to navigation when the user clicks on the icon */
|
||||
function menuBars() {
|
||||
var x = document.getElementById("myTopnav");
|
||||
if (x.className === "topnav") {
|
||||
var x = document.getElementById("navigation");
|
||||
if (x.className === "navigation") {
|
||||
x.className += " responsive";
|
||||
} else {
|
||||
x.className = "topnav";
|
||||
x.className = "navigation";
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user