(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.size() - 6) + ' more)' } return html } } } }) (jQuery);