Browse Source

Avoid fullscreen when swiping

Tobias Reich 11 years ago
parent
commit
749c2cd9ab
3 changed files with 7 additions and 4 deletions
  1. 0 0
      assets/build/main.js
  2. 1 0
      assets/js/init.js
  3. 6 4
      assets/js/swipe.js

File diff suppressed because it is too large
+ 0 - 0
assets/build/main.js


+ 1 - 0
assets/js/init.js

@@ -104,6 +104,7 @@ $(document).ready(function(){
 	/* Fullscreen on mobile */
 	if (mobileBrowser()) {
 		$(document).on("touchend", "#image", function(e) {
+			if (swipe.obj!==null&&(swipe.offset<=-5||swipe.offset>=5)) return false;
 			if (visible.controls()) view.header.hide(e, 0);
 			else view.header.show();
 		});

+ 6 - 4
assets/js/swipe.js

@@ -9,6 +9,7 @@ swipe = {
 
 	obj: null,
 	tolerance: 150,
+	offset: 0,
 
 	start: function(obj, tolerance) {
 
@@ -25,12 +26,12 @@ swipe = {
 
 		console.log(e);
 
-		e.x *= -1;
+		offset = -1 * e.x;
 
 		swipe.obj.css({
-			WebkitTransform: 'translateX(' + e.x + 'px)',
-			MozTransform: 'translateX(' + e.x + 'px)',
-			transform: 'translateX(' + e.x + 'px)'
+			WebkitTransform: 'translateX(' + offset + 'px)',
+			MozTransform: 'translateX(' + offset + 'px)',
+			transform: 'translateX(' + offset + 'px)'
 		});
 
 	},
@@ -51,6 +52,7 @@ swipe = {
 		}
 
 		swipe.obj = null;
+		swipe.offset = 0;
 
 	}
 

Some files were not shown because too many files changed in this diff