diff --git a/static/js/home.mdr.js b/static/js/home.mdr.js
index 8509fc3..7ca80b1 100644
--- a/static/js/home.mdr.js
+++ b/static/js/home.mdr.js
@@ -13,36 +13,6 @@ pandora.ui.home = function() {
opacity: 0,
zIndex: 1001
}),
- $reflectionImage = $('')
- .addClass('logo')
- .attr({src: '/static/png/logo.png'})
- .css({
- position: 'absolute',
- left: 0,
- top: '320px',
- right: 0,
- bottom: 0,
- width: '320px',
- margin: 'auto',
- opacity: 0,
- MozTransform: 'scaleY(-1)',
- OTransform: 'scaleY(-1)',
- WebkitTransform: 'scaleY(-1)'
- })
- .appendTo(that),
- $reflectionGradient = $('
')
- .addClass('OxReflection logo')
- .css({
- position: 'absolute',
- left: 0,
- top: '320px',
- right: 0,
- bottom: 0,
- width: '322px',
- height: '322px',
- margin: 'auto',
- })
- .appendTo(that),
$logo = $('
')
.addClass('logo')
.attr({
@@ -54,7 +24,7 @@ pandora.ui.home = function() {
left: 0,
top: 0,
right: 0,
- bottom: '320px',
+ bottom: '256px',
width: window.innerWidth + 'px',
margin: 'auto',
cursor: 'pointer'
@@ -260,7 +230,7 @@ pandora.ui.home = function() {
$findInput.focusInput(true);
});
});
- $logo.animate({width: '320px'}, 500);
+ $logo.animate({width: '256px'}, 500);
return that;
};
@@ -283,7 +253,7 @@ pandora.ui.home = function() {
that.showScreen = function(callback) {
var $elements = that.find(':not(.logo)'), count = 0;
- $logo.css({width: '320px'});
+ $logo.css({width: '256px'});
that.css({opacity: 1}).appendTo(Ox.$body);
that.find(':not(#logo)').css({opacity: 1});
$elements.animate({opacity: 1}, 500, function() {