Browse Source

Trying to fix undefined error on mobile devices while swiping

Tobias Reich 11 years ago
parent
commit
edb7471b10
3 changed files with 4 additions and 4 deletions
  1. 4 2
      assets/js/photo.js
  2. 0 2
      assets/js/swipe.js
  3. 0 0
      assets/min/main.js

+ 4 - 2
assets/js/photo.js

@@ -60,7 +60,8 @@ photo = {
 
 		var delay = 0;
 
-		if (album.json&&
+		if (photo.getID()!==false&&
+			album.json&&
 			album.json.content[photo.getID()]&&
 			album.json.content[photo.getID()].previousPhoto!=="") {
 
@@ -89,7 +90,8 @@ photo = {
 
 		var delay = 0;
 
-		if (album.json&&
+		if (photo.getID()!==false&&
+			album.json&&
 			album.json.content[photo.getID()]&&
 			album.json.content[photo.getID()].nextPhoto!=="") {
 

+ 0 - 2
assets/js/swipe.js

@@ -36,8 +36,6 @@ swipe = {
 
 	stop: function(e, left, right) {
 
-		console.log('stop with ' + e.x);
-
 		if (e.x<=-swipe.tolerance) left(true);
 		else if (e.x>=swipe.tolerance) right(true);
 		else if (swipe.obj!==null) {

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


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