UNPKG

wise-web-client

Version:

Based on Spine MVC framework

21 lines (15 loc) 422 B
// GenericItemModel.js // -------- define(['jquery', 'backbone', './BaseModel'], function($, Backbone, BaseModel) { var Model = BaseModel.extend({ // data from each item of collection idAttribute: "_id", parse: function(data) { return data; } }); // Returns the Model class return Model; } );