Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 37a3546

Browse files
author
samsep
committed
build
1 parent f12e361 commit 37a3546

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

dist/main.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -697,8 +697,11 @@ $templateCache.put("views/simple-countdown.directive.html","<p>{{vm.timeRemainin
697697
var filter;
698698

699699
filter = function() {
700-
return function(createdAt) {
701-
return moment(createdAt).fromNow();
700+
return function(createdAt, hideSuffix) {
701+
if (hideSuffix == null) {
702+
hideSuffix = false;
703+
}
704+
return moment(createdAt).fromNow(hideSuffix);
702705
};
703706
};
704707

0 commit comments

Comments
 (0)