Browse Source

Use correct offset

Tobias Reich 11 years ago
parent
commit
47d2e83a6c
2 changed files with 3 additions and 3 deletions
  1. 0 0
      assets/build/main.js
  2. 3 3
      assets/js/swipe.js

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


+ 3 - 3
assets/js/swipe.js

@@ -29,9 +29,9 @@ swipe = {
 		swipe.offset = -1 * e.x;
 
 		swipe.obj.css({
-			WebkitTransform: 'translateX(' + offset + 'px)',
-			MozTransform: 'translateX(' + offset + 'px)',
-			transform: 'translateX(' + offset + 'px)'
+			WebkitTransform: 'translateX(' + swipe.offset + 'px)',
+			MozTransform: 'translateX(' + swipe.offset + 'px)',
+			transform: 'translateX(' + swipe.offset + 'px)'
 		});
 
 	},

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