Removed unnecessary parsing

This commit is contained in:
Tobias Reich 2014-07-18 23:59:39 +02:00
parent 4d9bc5744c
commit f88a95d489
2 changed files with 1 additions and 2 deletions

View File

@ -35,7 +35,6 @@ search = {
if (data&&data.photos) { if (data&&data.photos) {
album.json = { content: data.photos }; album.json = { content: data.photos };
$.each(album.json.content, function() { $.each(album.json.content, function() {
album.parse(this);
photosData += build.photo(this); photosData += build.photo(this);
}); });
} }

File diff suppressed because one or more lines are too long