diff options
author | Roman Gräf <roman.graef@gmail.com> | 2017-11-02 08:33:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-02 08:33:43 +0100 |
commit | 09371dda6314ac913fcd64095671eb9192343595 (patch) | |
tree | 36860bcd659b0fdd21d1e1b1fdb1f315876af7d0 | |
parent | b79f5931ff7d9ecac6cbc1b6d640a46807536077 (diff) | |
download | ichtml-09371dda6314ac913fcd64095671eb9192343595.tar.gz ichtml-09371dda6314ac913fcd64095671eb9192343595.tar.bz2 ichtml-09371dda6314ac913fcd64095671eb9192343595.zip |
Update default.js
-rw-r--r-- | res/default.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/res/default.js b/res/default.js index 45234f3..d1c00aa 100644 --- a/res/default.js +++ b/res/default.js @@ -1,9 +1,9 @@ function sidebar_close() {
- $("#sidebar")[0].classList.remove('active');
+ $("#sidebar")[0].classList.remove('sidebar-active');
}
function sidebar_open() {
- $("#sidebar")[0].classList.add('active');
+ $("#sidebar")[0].classList.add('sidebar-active');
}
function show_loading() {
|