OSDN Git Service

8b38aaad1042bffcfaedc2fa327ee7f3ee4fb34f
[pettanr/pettanr.git] / app / assets / javascripts / views / ground_colors / summary.js.coffee
1 class Pettanr.Views.GroundColor.Summary extends Backbone.View\r
2   \r
3   initialize: (options) ->\r
4     @item = options.item\r
5   \r
6   render: () ->\r
7     this.$el.html('')\r
8     panel = @item.panel()\r
9     panel.fetch({cache: true}).done =>\r
10       panel_icon = new Pettanr.Views.Common.Icon({item: panel, half: true})\r
11       this.$el.append(panel_icon.render().el)\r
12     this\r
13   \r