diff options
author | Clement Ho <ClemMakesApps@gmail.com> | 2016-09-08 13:57:24 -0500 |
---|---|---|
committer | Clement Ho <ClemMakesApps@gmail.com> | 2016-11-07 14:49:00 -0600 |
commit | fa1ac47ef167e55d79a69d69596012fe5ac99d20 (patch) | |
tree | 74215243389cf58c556bb3a1a9f8cd85890e1f46 /app/views/events | |
parent | 6be0c160d346c67967e541a76b6fbf6fc1ba2456 (diff) | |
download | gitlab-ce-fa1ac47ef167e55d79a69d69596012fe5ac99d20.tar.gz |
Replace jQuery.timeago with timeago.js
Diffstat (limited to 'app/views/events')
-rw-r--r-- | app/views/events/_event.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/events/_event.html.haml b/app/views/events/_event.html.haml index 31fdcc5e21b..5c318cd3b8b 100644 --- a/app/views/events/_event.html.haml +++ b/app/views/events/_event.html.haml @@ -1,7 +1,7 @@ - if event.visible_to_user?(current_user) .event-item{ class: event_row_class(event) } .event-item-timestamp - #{time_ago_with_tooltip(event.created_at, skip_js: true)} + #{time_ago_with_tooltip(event.created_at)} = cache [event, current_application_settings, "v2.2"] do = author_avatar(event, size: 40) |