forked from 0x2620/pandora
cosmetic changes
This commit is contained in:
parent
91e9d85d58
commit
ed621dc29d
3 changed files with 3 additions and 3 deletions
|
@ -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});
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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});
|
||||
|
|
Loading…
Reference in a new issue