Browse Source

make testRightSide() agnostic to which modules are exist

nin-v2
Simon Grim 8 years ago
parent
commit
7933186018
  1. 13
      js/theme_option.js

13
js/theme_option.js

@ -61,13 +61,14 @@ $(document).ready(function() @@ -61,13 +61,14 @@ $(document).ready(function()
});
function testRightSide() { // if rightside is empty, don't show it and engarge postboard
if( ( $('.toptrends').html() == '' ) && ($('.who-to-follow').html() == '') && ( $('.twistday-reminder').html() == '' ) ){
$('.dashboard.right').css('display: none');
$('.wrapper .postboard').addClass('large');
}
else {
$('.dashboard.right').css('display: block');
var container = $('.dashboard.right');
if (container.children('.module:not(:empty)').length) {
container.show();
$('.wrapper .postboard').removeClass('large');
} else {
container.hide();
$('.wrapper .postboard').addClass('large');
}
}

Loading…
Cancel
Save