diff --git a/static/js/pandora/home.0xdb.js b/static/js/pandora/home.0xdb.js index f5de1c91..a0e8e06f 100644 --- a/static/js/pandora/home.0xdb.js +++ b/static/js/pandora/home.0xdb.js @@ -277,7 +277,7 @@ pandora.ui.home = function() { }; that.showScreen = function(callback) { - var count = 0, $elements = that.find(':not(.logo)'); + var $elements = that.find(':not(.logo)'), count = 0; $logo.css({width: '320px'}); that.css({opacity: 1}).appendTo(Ox.UI.$body); that.find('.logo').css({opacity: 1}); diff --git a/static/js/pandora/home.indiancinema.js b/static/js/pandora/home.indiancinema.js index 2b1397d2..344c9296 100644 --- a/static/js/pandora/home.indiancinema.js +++ b/static/js/pandora/home.indiancinema.js @@ -690,7 +690,7 @@ pandora.ui.home = function() { }; that.showScreen = function(callback) { - var count = 0, $elements = that.find('*'); + var $elements = that.find('*'), count = 0; $box.css({top: window.innerHeight / 2 - 40 + 'px'}); that.css({opacity: 1}).appendTo(Ox.UI.$body); $findInput.focusInput(true); diff --git a/static/js/pandora/home.js b/static/js/pandora/home.js index f77a7049..84582e79 100644 --- a/static/js/pandora/home.js +++ b/static/js/pandora/home.js @@ -277,7 +277,7 @@ pandora.ui.home = function() { }; that.showScreen = function(callback) { - var count = 0, $elements = that.find(':not(.logo)'); + var $elements = that.find(':not(.logo)'), count = 0; $logo.css({width: '320px'}); that.css({opacity: 1}).appendTo(Ox.UI.$body); that.find(':not(#logo)').css({opacity: 1});