Skip to content

Commit

Permalink
Update about.html
Browse files Browse the repository at this point in the history
  • Loading branch information
luiandshoots committed Apr 4, 2024
1 parent a3844c2 commit d178103
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,20 @@
<span class="w3-button w3-xxlarge w3-white w3-right" onclick="w3_open()"><i class="fa fa-bars"></i></span>
<div class="w3-clear"></div>
</body>

<script>

// Open and close sidebar
function w3_open() {
document.getElementById("mySidebar").style.width = "100%";
document.getElementById("mySidebar").style.display = "block";
}

function w3_close() {
document.getElementById("mySidebar").style.display = "none";
}

</script>

</body>
</html>

0 comments on commit d178103

Please sign in to comment.