ChatServer/pages/js/index.js

15 lines
458 B
JavaScript
Raw Normal View History

/**
* Created by Norbi on 2016-08-05.
*/
$(document).ready(function () {
var cmsgs = document.getElementById("channelmessages");
if (cmsgs != null && cmsgs.childElementCount > 0) {
cmsgs.forEach(function (item) {
var ctime = item.getElementById("converttime");
ctime.innerText = new Date(ctime.innerText * 1).toDateString();
});
cmsgs.lastElementChild.scrollIntoView(false);
}
});