Making progress

This commit is contained in:
2017-06-08 12:20:43 -05:00
parent abd7e803e9
commit 9a77a25342
21 changed files with 440 additions and 194 deletions

View File

@@ -1,5 +1,5 @@
function showAdminPanel() {
function toggleAdminPanel() {
document.querySelector('#menu').classList.toggle('hidden');
}
@@ -12,6 +12,6 @@ document.onkeydown = function(evt) {
isEscape = (evt.keyCode == 27);
}
if(isEscape) {
showAdminPanel();
toggleAdminPanel();
}
}