client/js/models.js
changeset 461 48235ed6b07d
parent 458 423bdf56d103
parent 455 18b9be54174d
child 622 02e3c464223f
equal deleted inserted replaced
460:bdf851bb1c4f 461:48235ed6b07d
    97                 style : this.get("style"),
    97                 style : this.get("style"),
    98                 created_by : this.get("created_by") ? this.get("created_by")
    98                 created_by : this.get("created_by") ? this.get("created_by")
    99                         .get("_id") : null,
    99                         .get("_id") : null,
   100                 size : this.get("size"),
   100                 size : this.get("size"),
   101                 clip_path : this.get("clip_path"),
   101                 clip_path : this.get("clip_path"),
   102                 shape : this.get("shape"),
   102                 shape : this.get("shape"),  
   103                 type : this.get("type"),
   103                 type : this.get("type")
   104                 hidden : this.get("hidden")
       
   105             };
   104             };
   106         }
   105         }
   107     });
   106     });
   108 
   107 
   109     // EDGE
   108     // EDGE
   180                 zoom_level : this.get("zoom_level"),
   179                 zoom_level : this.get("zoom_level"),
   181                 offset : this.get("offset"),
   180                 offset : this.get("offset"),
   182                 title : this.get("title"),
   181                 title : this.get("title"),
   183                 description : this.get("description"),
   182                 description : this.get("description"),
   184                 created_by : this.get("created_by") ? this.get("created_by")
   183                 created_by : this.get("created_by") ? this.get("created_by")
   185                         .get("_id") : null
   184                         .get("_id") : null,
       
   185                 hidden_nodes: this.get("hidden_nodes")
   186             // Don't need project id
   186             // Don't need project id
   187             };
   187             };
   188         }
   188         }
   189     });
   189     });
   190 
   190