From dec34632b86974c941abefab8dcd03caf3596374 Mon Sep 17 00:00:00 2001 From: rolux Date: Mon, 20 Feb 2012 18:44:49 +0000 Subject: [PATCH] fix #559 (slow pad.ma home screen) --- static/js/pandora/home.padma.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/static/js/pandora/home.padma.js b/static/js/pandora/home.padma.js index fde81651..923054f9 100644 --- a/static/js/pandora/home.padma.js +++ b/static/js/pandora/home.padma.js @@ -587,6 +587,11 @@ pandora.ui.home = function() { that.showScreen = function() { that.css({opacity: 1}).appendTo(Ox.UI.$body); + $box.css({marginTop: '80px'}); + that.find('*').css({opacity: 1}); + $findInput.focusInput(true); + showLists(); + /* $box.animate({marginTop: '80px'}, 500); setTimeout(function() { that.find('*').animate({opacity: 1}, 250, function() { @@ -594,6 +599,7 @@ pandora.ui.home = function() { showLists(); }); }, 250); + */ return that; };