diff --git a/css/magazine.css b/css/magazine.css index 181a0fa..d604d6c 100755 --- a/css/magazine.css +++ b/css/magazine.css @@ -151,7 +151,7 @@ body { background: gray; - box-shadow: 0px 0px 300px 0px rgba(0,0,0,0.1) inset; + /*box-shadow: 0px 0px 300px 0px rgba(0,0,0,0.15) inset;*/ -webkit-transition: all 0.6s ease; -moz-transition: all 0.6s ease; diff --git a/index.html b/index.html index b01655d..a8b57c8 100755 --- a/index.html +++ b/index.html @@ -569,21 +569,26 @@ $(function(){ //toggleThemes('none') - //setupEditor() + $.get('fashion.html') + .done(function(data){ + loadMagazineDOM(data) + //setupEditor() + }) + .always(function(){ + // hide the splash... + setTimeout(function(){ - // hide the splash... - setTimeout(function(){ + focusPage(0, null, 0) - focusPage(0, null, 0) + $('.splash').fadeOut() + }, 350) - $('.splash').fadeOut() - }, 350) - - // remove the spinner... - setTimeout(function(){ - $('#spinner').spin(false) - MagazineScroller.refresh() - }, 500) + // remove the spinner... + setTimeout(function(){ + $('#spinner').spin(false) + MagazineScroller.refresh() + }, 500) + }) })