pre-sort by title to take advantange of stable sort; watch for null date

This commit is contained in:
David 2017-05-16 21:57:29 -04:00
parent 4f4c557fd6
commit 1842828ec6
2 changed files with 2 additions and 1 deletions

View File

@ -29,6 +29,7 @@
}
function renderTable(data, sortField) {
data = _.sortBy(data, 'title');
data = _.sortBy(data, sortField);
$.each(data, function(key, value) {

View File

@ -142,7 +142,7 @@ function normalizeGoogleData(book) {
publisher: _.trim(book.publisher, '"'),
series: '',
volume: '',
publishedDate: book.publishedDate.substring(0, 4),
publishedDate: book.publishedDate ? book.publishedDate.substring(0, 4) : '',
coverurl: '',
description: book.description,
notes: '',