class Pettanr.Views.SpeechBalloon.Summary extends Pettanr.View.Summary initialize: (options) -> super(options) render: () -> super() @item.get_parent('panel', this, { success: (@panel) => @panel_face_button = @panel.mini_face_button({ context: this, click: () => @trigger('http_get', @panel.show_url()) }) @panel.get_parent('author', this, { success: (@author) => @author_faced_label_button = @author.mini_faced_label_button({ shorten: true }, { context: this, click: () => @trigger('http_get', @author.show_url()) }) this.$el.html('') this.$el.append(@panel_face_button.render().el) this.$el.append(@author_faced_label_button.render().el) }) }) this