Simple image host.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

script.js 161B

12345
  1. $(document).on("ready", function() {
  2. $("#collections .date-created").each(function() {
  3. this.innerHTML = util.dateToString(new Date(this.innerHTML));
  4. });
  5. });