Browse Source

add .module.new-users to reAppendModules()

nin-v2
Simon Grim 8 years ago
parent
commit
1a607b30f4
  1. 9
      js/theme_option.js

9
js/theme_option.js

@ -147,9 +147,12 @@ $(document).keyup(function(e) {
}); });
function reAppendModules() { // avoid w1200 things function reAppendModules() { // avoid w1200 things
$('.module.toptrends').detach().appendTo($('.dashboard.right')); $('.dashboard.right')
$('.module.who-to-follow').detach().appendTo($('.dashboard.right')); .append($('.module.toptrends'))
$('.module.twistday-reminder').detach().appendTo($('.dashboard.right')); .append($('.module.who-to-follow'))
.append($('.module.twistday-reminder'))
.append($('.module.new-users'))
;
} }
function newLoader() { // create divs for new loader function newLoader() { // create divs for new loader

Loading…
Cancel
Save