fix expand-aside button hiding if aside is empty

This commit is contained in:
Mario Vavti
2017-01-04 15:50:13 +01:00
parent 75067524ae
commit 4d5c20ce17
+1 -1
View File
@@ -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();
}