(function($) {
Favorite = {
link_to_users: function(users) {
var html = ""
if (users.size() == 0) {
return "no one"
} else {
html = users.slice(0, 6).map(function(x) {return '' + x.name + ''}).join(", ")
if (users.size() > 6) {
html += '' + users.slice(6, -1).map(function(x) {return '' + x.name + ''}).join(", ") + ' (' + (users.size() - 6) + ' more)'
}
return html
}
}
}
}) (jQuery);