|
@@ -180,7 +180,7 @@ album.delete = function(albumIDs) {
|
|
|
albumIDs.forEach(function(id) {
|
|
|
albums.json.num--;
|
|
|
view.albums.content.delete(id);
|
|
|
- delete albums.json.albums[id];
|
|
|
+ albums.deleteByID(id);
|
|
|
});
|
|
|
|
|
|
} else {
|
|
@@ -210,7 +210,7 @@ album.delete = function(albumIDs) {
|
|
|
|
|
|
|
|
|
if (album.json) albumTitle = album.json.title;
|
|
|
- else if (albums.json) albumTitle = albums.json.albums[albumIDs].title;
|
|
|
+ else if (albums.json) albumTitle = albums.getByID(albumIDs).title;
|
|
|
|
|
|
msg = "<p>Are you sure you want to delete the album '" + albumTitle + "' and all of the photos it contains? This action can't be undone!</p>";
|
|
|
|
|
@@ -254,7 +254,7 @@ album.setTitle = function(albumIDs) {
|
|
|
|
|
|
|
|
|
if (album.json) oldTitle = album.json.title;
|
|
|
- else if (albums.json) oldTitle = albums.json.albums[albumIDs].title;
|
|
|
+ else if (albums.json) oldTitle = albums.getByID(albumIDs).title;
|
|
|
|
|
|
if (!oldTitle) oldTitle = '';
|
|
|
oldTitle = oldTitle.replace(/'/g, ''');
|
|
@@ -281,13 +281,13 @@ album.setTitle = function(albumIDs) {
|
|
|
|
|
|
if (albums.json) {
|
|
|
var id = albumIDs[0];
|
|
|
- albums.json.albums[id].title = newTitle;
|
|
|
+ albums.getByID(id).title = newTitle;
|
|
|
}
|
|
|
|
|
|
} else if (visible.albums()) {
|
|
|
|
|
|
albumIDs.forEach(function(id) {
|
|
|
- albums.json.albums[id].title = newTitle;
|
|
|
+ albums.getByID(id).title = newTitle;
|
|
|
view.albums.content.title(id);
|
|
|
});
|
|
|
|
|
@@ -580,7 +580,7 @@ album.merge = function(albumIDs) {
|
|
|
if (albumIDs instanceof Array===false) albumIDs = [albumIDs];
|
|
|
|
|
|
|
|
|
- if (albums.json) title = albums.json.albums[albumIDs[0]].title;
|
|
|
+ if (albums.json) title = albums.getByID(albumIDs[0]).title;
|
|
|
|
|
|
if (!title) title = '';
|
|
|
title = title.replace(/'/g, ''');
|
|
@@ -588,7 +588,7 @@ album.merge = function(albumIDs) {
|
|
|
if (albumIDs.length===2) {
|
|
|
|
|
|
|
|
|
- if (albums.json) sTitle = albums.json.albums[albumIDs[1]].title;
|
|
|
+ if (albums.json) sTitle = albums.getByID(albumIDs[1]).title;
|
|
|
|
|
|
if (!sTitle) sTitle = '';
|
|
|
sTitle = sTitle.replace(/'/g, ''');
|