Browse Source

Added e.preventDefault

Tobias Reich 11 years ago
parent
commit
381a86c99d
1 changed files with 8 additions and 3 deletions
  1. 8 3
      assets/js/view.js

+ 8 - 3
assets/js/view.js

@@ -379,9 +379,14 @@ view = {
 
 			// Fullscreen on mobile
 			if (mobileBrowser()) {
-				$(document).on("touchend", "#image", function() {
-					if (visible.controls()) view.header.hide(null, 0);
-					else view.header.show();
+				$(document).on("touchend", "#image", function(e) {
+					if (visible.controls()) {
+						view.header.hide(e, 0);
+						e.preventDefault();
+					} else {
+						view.header.show();
+						e.preventDefault();
+					}
 				});
 			}