summaryrefslogtreecommitdiffstats
path: root/apps/files/js
diff options
context:
space:
mode:
authorClark Tomlinson <fallen013@gmail.com>2014-08-26 14:17:33 -0400
committerClark Tomlinson <fallen013@gmail.com>2014-08-28 09:28:45 -0400
commit92685acf60afaadcb659eb44b73a6a59de7bce2b (patch)
tree3b739ad4dae663bd445638bc3fa4dd9e617da888 /apps/files/js
parentcb0da1178b0872988582ee5fbf6b5b1cb5ea2527 (diff)
downloadnextcloud-server-92685acf60afaadcb659eb44b73a6a59de7bce2b.tar.gz
nextcloud-server-92685acf60afaadcb659eb44b73a6a59de7bce2b.zip
Implementing moment.js
Updating Usages Removing unused method Adding JS Doc
Diffstat (limited to 'apps/files/js')
-rw-r--r--apps/files/js/filelist.js2
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;