Browse Source

Fixed show header on touch

Tobias Reich 11 years ago
parent
commit
0204bc37b0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      assets/js/init.js

+ 1 - 1
assets/js/init.js

@@ -105,7 +105,7 @@ $(document).ready(function(){
 	if (mobileBrowser()) {
 		$(document).on("touchend", "#image", function(e) {
 			if (visible.controls()) view.header.hide(e, 0);
-			else e.preventDefault();
+			else view.header.show();
 		});
 	}