VRFS-1350 update timestamps to use timeago

This commit is contained in:
Brian Smith 2014-04-08 23:52:30 -04:00
parent 8e9bf41b10
commit 2525f86c4f
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@
claimedRecordingId: claimedRecording.id,
name: claimedRecording.name,
genre: claimedRecording.genre_id.toUpperCase(),
created_at: context.JK.formatDateTime(recording.created_at),
created_at: $.timeago(recording.created_at),
description: response.description ? response.description : "",
play_count: recording.play_count,
comment_count: recording.comment_count,

View File

@ -44,7 +44,7 @@
genre: response.genres.toUpperCase(),
comment_count: response.comment_count,
like_count: response.like_count,
created_at: context.JK.formatDateTime(response.created_at),
created_at: $.timeago(response.created_at),
musicians: musicianHtml
});