diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2016-09-01 14:13:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-01 14:13:23 +0200 |
commit | ca7b60ba816e198202d1fb61e576013888636737 (patch) | |
tree | df93d0ebd24ff1b51721784a2892b589de430778 /apps/files/js/filelist.js | |
parent | 8325c4443b64d10abc79f9b12ace093f69e8d4ce (diff) | |
parent | 80e8d3db35e22f4e0c3adff79b426e472c203df0 (diff) | |
download | nextcloud-server-ca7b60ba816e198202d1fb61e576013888636737.tar.gz nextcloud-server-ca7b60ba816e198202d1fb61e576013888636737.zip |
Merge pull request #1215 from nextcloud/issue-1083-update-live-relative-timestamps
Update relative timestamps for a better "live" feeling
Diffstat (limited to 'apps/files/js/filelist.js')
-rw-r--r-- | apps/files/js/filelist.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index cfaeca1a06b..26c6b34d098 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1202,8 +1202,9 @@ } td = $('<td></td>').attr({ "class": "date" }); td.append($('<span></span>').attr({ - "class": "modified", + "class": "modified live-relative-timestamp", "title": formatted, + "data-timestamp": mtime, "style": 'color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')' }).text(text) .tooltip({placement: 'top'}) |