OSDN Git Service

Merge branch 'v06' of git.sourceforge.jp:/gitroot/pettanr/pettanr into v06
[pettanr/pettanr.git] / app / assets / javascripts / models / artist.js.coffee
1 class Pettanr.Artist extends Peta.Owner\r
2   \r
3   @singular: () ->\r
4     'Artist'\r
5   \r
6   @plural: () ->\r
7     'Artists'\r
8   \r
9   defaults: {\r
10     id: null,\r
11     name: 'no name'\r
12   } \r
13   \r
14   overwrite: (options) ->\r
15   \r
16   initialize: (attr = {}, options = {}) ->\r
17     super(attr, options)\r
18   \r