1
0
mirror of https://github.com/flarum/core.git synced 2025-07-23 01:31:40 +02:00

Better live timestamp performance

This commit is contained in:
Toby Zerner
2015-02-06 10:35:27 +10:30
parent b6efee1f1e
commit fc788756d2

View File

@@ -28,6 +28,9 @@ export default {
.removeData('livestamp');
timestamp = moment(timestamp);
if (timestamp.diff(moment()) < 60 * 60) {
return;
}
if (moment.isMoment(timestamp) && !isNaN(+timestamp)) {
var newData = $.extend({ }, { 'original': $el.contents() }, oldData);
newData.moment = moment(timestamp);