OSDN Git Service

fix new element dialog
[pettanr/pettanr.git] / app / assets / javascripts / models / sheet.js.coffee
index 1a5ef07..1c377ad 100644 (file)
@@ -1,4 +1,6 @@
 class Pettanr.Sheet extends Peta.Root\r
+  url: '/sheets/'\r
+  \r
   @singular: () ->\r
     'Sheet'\r
   \r
@@ -11,6 +13,9 @@ class Pettanr.Sheet extends Peta.Root
     author_id: null\r
   } \r
   \r
+  author: () ->\r
+    new Pettanr.Author({id: @get('author_id')})\r
+  \r
   is_visible: (operators) ->\r
     switch super(operators)\r
       when null\r
@@ -24,6 +29,3 @@ class Pettanr.Sheet extends Peta.Root
     if @id\r
       @url = @url + @id\r
   \r
-class Pettanr.Sheet.Collection extends Backbone.Collection\r
-  model: Pettanr.Sheet\r
-  url: '/sheets'\r