Commit 7473e93c authored by miripiruni's avatar miripiruni

Fixed regressions: Inner navigation doesnt work with tap next, Timer is not disabled by tap prev

parent 9d29b9b9
...@@ -913,9 +913,9 @@ window.shower = window.shower || (function(window, document, undefined) { ...@@ -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();
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment