add .module.new-users to reAppendModules()

This commit is contained in:
Simon Grim 2016-11-27 17:28:35 +05:00
parent 051fe50662
commit 1a607b30f4

View File

@ -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