Don't use hardcoded date and time

Use local time instead. http://momentjs.com/
remotes/origin/etag-endpoint
Daniel Hansson 10 years ago
parent 302c19067a
commit 8ee1fa98df
  1. 2
      core/js/js.js

@ -1338,7 +1338,7 @@ OC.Util = {
* @returns {string} timestamp formatted as requested
*/
formatDate: function (timestamp, format) {
format = format || "MMMM D, YYYY H:mm";
format = format || "LLL";
return moment(timestamp).format(format);
},

Loading…
Cancel
Save