Anton Shestakov <av6@dwimlabs.net>, Mon, 21 Mar 2016 23:01:44 +0800
contacts: add avatars and fallback option (background color from hashed jid)
coffee/rivets.coffee
Permissions: -rw-r--r--
observe: (obj, keypath, callback) -> obj.on('change:' + keypath, callback) unobserve: (obj, keypath, callback) -> obj.off('change:' + keypath, callback) set: (obj, keypath, value) -> rivets.formatters['first-letter'] = (value) -> if value? then value.charAt(0) else ' ' rivets.formatters['only'] = (value, allowed...) -> if value in allowed then value else '' rivets.formatters['eq'] = (a, b) -> rivets.formatters['format-date'] = (value, format) -> if value? then value.format(format) else '' rivets.formatters['iso-date'] = (value) -> if value? then value.toISOString() else '' rivets.formatters['from-now'] = (value) -> if value? then value.fromNow() else ''