Merge pull request #1309 from jackyq2015/master

fix 'last modified' sorting issue #1307
This commit is contained in:
Jacky 2017-11-04 22:54:52 -04:00 committed by GitHub
commit 8e3c36aa42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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