OSDN Git Service

fix symbol picture
[pettanr/pettanr.git] / app / assets / javascripts / models / speech_balloon_template.js.coffee
index f86a167..55dafaf 100644 (file)
@@ -1,14 +1,5 @@
 class Pettanr.SpeechBalloonTemplate extends Peta.Template\r
-  relations: [{\r
-    type: Backbone.HasMany,\r
-    key: 'speech_balloons',\r
-    relatedModel: 'SpeechBalloon',\r
-    collectionType: 'SpeechBalloonCollection',\r
-    reverseRelation: {\r
-      key: 'livesIn',\r
-      includeInJSON: 'id'\r
-    }\r
-  }]\r
+  url: '/speech_balloon_templates/'\r
   \r
   @singular: () ->\r
     'SpeechBalloonTemplate'\r
@@ -20,21 +11,16 @@ class Pettanr.SpeechBalloonTemplate extends Peta.Template
     id: null\r
   } \r
   \r
-  get_system_picture: () ->\r
+  system_picture: () ->\r
     new Pettanr.SystemPicture({id: @get('system_picture_id')})\r
   \r
   symbol_option: () ->\r
-    _this = this\r
-    r = @get_system_picture()\r
-    r.fetch({}).done () ->\r
-      _this.system_picture = r\r
-      _this.system_picture.tmb_opt_img_tag()\r
+    @system_picture()\r
   \r
   initialize: () ->\r
     if @id\r
       @url = @url + @id\r
-    @system_picture = null\r
-  \r
+    \r
 class Pettanr.SpeechBalloonTemplate.Collection extends Backbone.Collection\r
   model: Pettanr.SpeechBalloonTemplate\r
   url: '/speech_balloon_templates'\r