fix 'last modified' sorting issue #1307

This commit is contained in:
Jacky 2017-11-04 22:53:32 -04:00
parent 51691fc06d
commit d086b8356a

View File

@ -218,7 +218,7 @@ Refine.OpenProjectUI.prototype._renderProjects = function(data) {
); );
$('<div></div>') $('<div></div>')
.html(formatRelativeDate(project.date)) .html(project.date.toISOString())
.addClass("last-modified") .addClass("last-modified")
.attr("title", project.date.toString()) .attr("title", project.date.toString())
.appendTo($(tr.insertCell(tr.cells.length)).attr('width', '1%')); .appendTo($(tr.insertCell(tr.cells.length)).attr('width', '1%'));
@ -264,7 +264,14 @@ Refine.OpenProjectUI.prototype._renderProjects = function(data) {
renderProject(projects[i]); renderProject(projects[i]);
} }
$(table).tablesorter();
$(table).tablesorter({
headers : {
3 : {
sorter : "time"
}
}
});
} }
}; };