From bfe31d87a12c04bcfd9a0daa3de195019cc2c099 Mon Sep 17 00:00:00 2001 From: Marcin Kurczewski Date: Thu, 27 Nov 2014 18:22:48 +0100 Subject: [PATCH] Fixed history presenter --- public_html/js/Presenters/HistoryPresenter.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public_html/js/Presenters/HistoryPresenter.js b/public_html/js/Presenters/HistoryPresenter.js index dd68313f..01beafb8 100644 --- a/public_html/js/Presenters/HistoryPresenter.js +++ b/public_html/js/Presenters/HistoryPresenter.js @@ -63,6 +63,7 @@ App.Presenters.HistoryPresenter = function( function renderHistory($page, historyItems) { $page.append(templates.history({ formatRelativeTime: util.formatRelativeTime, + formatAbsoluteTime: util.formatAbsoluteTime, history: historyItems})); }