mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
15 lines
443 B
CoffeeScript
15 lines
443 B
CoffeeScript
angular.module("filters", []).filter "truncate", ->
|
|
(text, length, end) ->
|
|
text = text || ""
|
|
length = 10 if isNaN(length)
|
|
end = "..." if end is `undefined`
|
|
if text.length <= length or text.length - end.length <= length
|
|
text
|
|
else
|
|
String(text).substring(0, length - end.length) + end
|
|
|
|
$.timeago.settings.allowFuture = true;
|
|
angular.module("filters").filter "date_in_words", ->
|
|
(date) ->
|
|
$.timeago(date)
|