I"o(function() { var extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, hasProp = {}.hasOwnProperty; App.Controllers.User.Rooms = (function(superClass) { extend(Rooms, superClass); function Rooms() { return Rooms.__super__.constructor.apply(this, arguments); } Rooms.prototype.initialize = function() {}; Rooms.prototype.index = function() { var view; view = new App.Views.User.Rooms.List; return view.render(); }; Rooms.prototype.show = function() { var view; view = new App.Views.User.Rooms.Show({ id: this.params.id }); this.setView('show', view); view.render(); return App.Models.Room.Member.all({ roomId: this.params.id }).then(function(resp) { return view.renderMembers(resp.resources); }); }; return Rooms; })(App.Controllers.Base); }).call(this); :ET