diff options
Diffstat (limited to 'bh20simplewebuploader/static/main.js')
-rw-r--r-- | bh20simplewebuploader/static/main.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/bh20simplewebuploader/static/main.js b/bh20simplewebuploader/static/main.js index 024a101..6707096 100644 --- a/bh20simplewebuploader/static/main.js +++ b/bh20simplewebuploader/static/main.js @@ -1,3 +1,18 @@ +/* + * Menu and navigation + */ + +/* Toggle between adding and removing the "responsive" class to topnav + * when the user clicks on the icon */ +function myFunction() { + var x = document.getElementById("myTopnav"); + if (x.className === "topnav") { + x.className += " responsive"; + } else { + x.className = "topnav"; + } +} + function fetchAPI(apiEndPoint) { fetch(scriptRoot + apiEndPoint) .then(response => { |