fix expand-aside button hiding if aside is empty

This commit is contained in:
Mario Vavti 2016-12-31 12:55:10 +01:00
parent e5a6c0a94d
commit 9820baf82e

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();
}