aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2016-12-31 12:55:10 +0100
committerMario Vavti <mario@mariovavti.com>2016-12-31 12:55:10 +0100
commit9820baf82eb61346bc3b7695889d9d242f30487d (patch)
tree4dd5e1cec0339e6930fff94b914771e429542045
parente5a6c0a94da18fc2e9b1c8ab4c99ecfa615405e4 (diff)
downloadvolse-hubzilla-9820baf82eb61346bc3b7695889d9d242f30487d.tar.gz
volse-hubzilla-9820baf82eb61346bc3b7695889d9d242f30487d.tar.bz2
volse-hubzilla-9820baf82eb61346bc3b7695889d9d242f30487d.zip
fix expand-aside button hiding if aside is empty
-rw-r--r--view/theme/redbasic/js/redbasic.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js
index b7993ce90..395385411 100644
--- a/view/theme/redbasic/js/redbasic.js
+++ b/view/theme/redbasic/js/redbasic.js
@@ -30,7 +30,7 @@ $(document).ready(function() {
}
});
- if($('aside').length && $('aside').html().length === 0) {
+ if($('#left_aside_wrapper').length && $('#left_aside_wrapper').html().length === 0) {
$('#expand-aside').hide();
}