Fixed regressions: Inner navigation doesnt work with tap next, Timer is not disabled by tap prev
This commit is contained in:
parent
9d29b9b973
commit
7473e93c4a
|
@ -913,9 +913,9 @@ window.shower = window.shower || (function(window, document, undefined) {
|
||||||
x = e.touches[0].pageX;
|
x = e.touches[0].pageX;
|
||||||
|
|
||||||
if (x > window.innerWidth / 2) {
|
if (x > window.innerWidth / 2) {
|
||||||
shower.next();
|
shower._turnNextSlide();
|
||||||
} else {
|
} else {
|
||||||
shower.previous();
|
shower._turnPreviousSlide();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue