diff --git a/flatclient/js/gui.js b/flatclient/js/gui.js
index 7221fdf..ea7aa50 100755
--- a/flatclient/js/gui.js
+++ b/flatclient/js/gui.js
@@ -567,3 +567,8 @@ function locationHashChanged() {
document.title = PROGRAM_NAME;
return false;
}
+
+$(document).bind("mobileinit", function(){
+ $.event.special.swipe.horizontalDistanceThreshold = 100; // (default: 30px) – Swipe horizontal displacement must be more than this.
+ $.event.special.swipe.verticalDistanceThreshold = 100; // (default: 75px) – Swipe vertical displacement must be less than this.
+});
\ No newline at end of file