summaryrefslogtreecommitdiff
path: root/js/swipes.js
blob: 8a7b874e66c9d8cde87ddc9341afc4a4eb72c132 (plain)
1
2
3
4
5
6
7
8
$(window).on("swipeleft", function() {
	parent.book.nextPage();
});

$(window).on("swiperight", function() {
	parent.book.prevPage();
});