Utilizzo date e non più modified

This commit is contained in:
gine 2017-03-25 17:13:16 +01:00
parent 7aa60a8d8f
commit 28a32089e4
2 changed files with 4 additions and 4 deletions

View file

@ -41,7 +41,7 @@ var drawListPost = function(div, resultSet, position) {
for (var i = 0; i < resultSet.rows.length; i++) {
var val = JSON.parse(resultSet.rows.item(i).post);
var id = val.id;
var date = val.modified;
var date = val.date;
var title = val.title.rendered;
var url = val.guid.rendered;
var cleanTime = EVENTS.formatDate(date, EVENTS.dateFormat.display.date);
@ -394,7 +394,7 @@ function getSinglePageRecur(url, category, pagenum) {
}
$.each(data, function (key, val) {
var id = val.id;
var time = val.modified;
var time = val.date;
var title = val.title.rendered;
var tags = val.tags;
var blob = JSON.stringify(val);

View file

@ -141,7 +141,7 @@ function getPrevSinglePageRecur(url, pagenum, categories) {
var oldest_date = window.localStorage.getItem('db_oldest_' + type + '_date');
$.each(data, function (key, val) {
var id = val.id;
var time = val.modified;
var time = val.date;
var title = val.title.rendered;
var tags = val.tags;
var postCategories = val.categories;
@ -199,7 +199,7 @@ function getLastSinglePageRecur(url, pagenum, categories) {
var older_date = null;
$.each(data, function (key, val) {
var id = val.id;
var time = val.modified;
var time = val.date;
var title = val.title.rendered;
var tags = val.tags;
var postCategories = val.categories;