more testing...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2013-02-14 00:24:14 +04:00
parent a363984aaf
commit 071bc4d8c2

View File

@ -144,7 +144,14 @@ $(document).ready(function(){
// .ScrollTo does notwork...
//limit_scroll()
if(!touching){
t = setTimeout(setCurrentPage, 100)
t = setTimeout(function(){
var n = getPageNumber()
var page = $($('.page')[n])
$('.current.page').removeClass('current')
page.addClass('current')
// attempt to make it without using .ScrollTo(...)
$('.viewer').scrollLeft(page.position().left)
}, 100)
}
})