diff --git a/TODO.otl b/TODO.otl index bea7747..e7d5313 100755 --- a/TODO.otl +++ b/TODO.otl @@ -9,6 +9,9 @@ [_] add in-page live templates... | elements that will get generated content, like page numbers etc. [_] BUG: initial load on android does not center on the correct page... + | for some odd reason only one of the first and second pages are opened + | correctly, any other page results in showing the second page and any + | click focuses the correct page... [_] magazine loader and data format... | this is simple, just use a restyled magazine viewer... [_] 0% populate an example issue diff --git a/index.html b/index.html index fe60ed7..1a3ea69 100755 --- a/index.html +++ b/index.html @@ -115,7 +115,15 @@ $(document).ready(function(){ // hide the splash screen... $(window).one('webkitTransitionEnd oTransitionEnd msTransitionEnd transitionend', function(){ - setTimeout(function(){$('.splash').fadeOut()}, 50) + // XXX try and fix the android bug... + setTimeout(function(){ + //updateView() + setCurrentPage() + }, 50) + // hide the splash... + setTimeout(function(){ + $('.splash').fadeOut() + }, 100) }) })