trying to fix the android load bug...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2013-01-30 03:46:56 +04:00
parent aa2d9666d6
commit b3c49c9b0f
2 changed files with 12 additions and 1 deletions

View File

@ -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

View File

@ -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)
})
})