Utilizzo date e non più modified
This commit is contained in:
parent
7aa60a8d8f
commit
28a32089e4
2 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue