Browse Source

- Fixed a bug where it was possible to right-click on SmartAlbums after searching
- Fixed a bug where it wasn't possible to rename albums while searching

Tobias Reich 10 years ago
parent
commit
8b39f6fffa
3 changed files with 7 additions and 0 deletions
  1. 2 0
      assets/js/album.js
  2. 5 0
      assets/js/search.js
  3. 0 0
      assets/min/main.js

+ 2 - 0
assets/js/album.js

@@ -18,6 +18,7 @@ album = {
 		else id = $(".album:hover, .album.active").attr("data-id");
 
 		// Search
+		if (!id) id = $(".album:hover, .album.active").attr("data-id");
 		if (!id) id = $(".photo:hover, .photo.active").attr("data-album-id");
 
 		if (id) return id;
@@ -201,6 +202,7 @@ album = {
 			// Get old title if only one album is selected
 			if (album.json) oldTitle = album.json.title;
 			else if (albums.json) oldTitle = albums.json.content[albumIDs].title;
+			if (!oldTitle) oldTitle = "";
 			oldTitle = oldTitle.replace("'", "'");
 		}
 

+ 5 - 0
assets/js/search.js

@@ -82,7 +82,12 @@ search = {
 
 		if (search.code!=="") {
 
+			// Trash data
+			albums.json = null;
+			album.json = null;
+			photo.json = null;
 			search.code = "";
+
 			lychee.animate(".divider", "fadeOut");
 			albums.load();
 

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