diff options
author | Clark Tomlinson <fallen013@gmail.com> | 2014-08-28 11:47:37 -0400 |
---|---|---|
committer | Clark Tomlinson <fallen013@gmail.com> | 2014-08-28 11:47:37 -0400 |
commit | 54eb2f42df3c0e4684f0cbd29e507b99a5cfeb8f (patch) | |
tree | dc8fc3e5775750d4c8fb37fa40a0305498ea51b2 /apps/files | |
parent | f4e6cd5f3ec7725900c7ef08092b1d673f302349 (diff) | |
parent | 92685acf60afaadcb659eb44b73a6a59de7bce2b (diff) | |
download | nextcloud-server-54eb2f42df3c0e4684f0cbd29e507b99a5cfeb8f.tar.gz nextcloud-server-54eb2f42df3c0e4684f0cbd29e507b99a5cfeb8f.zip |
Merge pull request #10647 from owncloud/implementing_momentjs
Implementing momentjs
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/filelist.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 3cbc25fc24b..fd11a80248d 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -703,7 +703,7 @@ "class": "modified", "title": formatDate(mtime), "style": 'color:rgb('+modifiedColor+','+modifiedColor+','+modifiedColor+')' - }).text( relative_modified_date(mtime / 1000) )); + }).text(OC.Util.relativeModifiedDate(mtime))); tr.find('.filesize').text(simpleSize); tr.append(td); return tr; |