App.library(function(e, t) {
var n = {
$points: t("#user-points")
};
n.updatePoints = function(t) {
t = parseInt(t) || 0,
e.user.points += t,
e.user.points_formatted = e.formatCurrency(e.user.points),
n.$points.html(e.user.points_formatted)
}
,
n.updatePoints(0),
e.ui.user = n
})