Fixed undefined errors on touch devices when touching outside of active corners.

Fixed bug in display=single (on touch devices) when on last page, was unable to turn to previous page.
This commit is contained in:
Tri Nguyen 2012-04-21 12:48:43 -07:00
parent dc7be695d0
commit 056e8f6174

View File

@ -409,7 +409,7 @@ turnMethods = {
data.pages[page] = data.pageObjs[page].
css({width: (single) ? this.width() : this.width()/2, height: this.height()}).
flip({page: page,
next: (even || single) ? page+1 : page-1,
next: (single && page === data.totalPages) ? page -1 : ((even || single) ? page+1 : page-1),
turn: this,
duration: data.opts.duration,
acceleration : data.opts.acceleration,
@ -1232,6 +1232,9 @@ flipMethods = {
},
_cornerActivated: function(e) {
if (e.originalEvent === undefined) {
return false;
}
e = (isTouch) ? e.originalEvent.touches : [e];