OSDN Git Service

fix summary
[pettanr/pettanr.git] / app / assets / javascripts / models / author.js.coffee
1 class Pettanr.Author extends Peta.Owner\r
2   url: '/authors/'\r
3   \r
4   @singular: () ->\r
5     'Author'\r
6   \r
7   @plural: () ->\r
8     'Authors'\r
9   \r
10   defaults: {\r
11     id: null,\r
12     name: 'no name'\r
13   } \r
14   \r
15   name_view: (length = null) ->\r
16     new Pettanr.Views.Author.Name({item: this, length: length})\r
17   \r
18   icon_with_caption_view: (half, column_name, length) ->\r
19     new Pettanr.Views.Common.IconWithCaption({item: this, half: half, column_name: column_name, length: length})\r
20   \r
21   initialize: () ->\r
22     if @id\r
23       @url = @url + @id\r
24   \r
25 class Pettanr.Author.Collection extends Backbone.Collection\r
26   model: Pettanr.Author\r
27   url: '/authors'\r