Browse Source

Move and delete photo fixed

Tobias Reich 11 years ago
parent
commit
f9f4afe7db
2 changed files with 11 additions and 0 deletions
  1. 0 0
      assets/js/min/main.js
  2. 11 0
      assets/js/modules/photo.js

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


+ 11 - 0
assets/js/modules/photo.js

@@ -151,6 +151,17 @@ photo = {
 
 		if (albumID>=0) {
 
+			// Change reference for the next and previous photo
+			if (album.json.content[photoID].nextPhoto!==""||album.json.content[photoID].previousPhoto!=="") {
+
+				nextPhoto = album.json.content[photoID].nextPhoto;
+				previousPhoto = album.json.content[photoID].previousPhoto;
+
+				album.json.content[previousPhoto].nextPhoto = nextPhoto;
+				album.json.content[nextPhoto].previousPhoto = previousPhoto;
+
+			}
+
 			if (visible.photo) lychee.goto(album.getID());
 			album.json.content[photoID] = null;
 			view.album.content.delete(photoID);

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