APIs

Show:
  1. /**
  2. Line Model
  3. @class LineModel
  4. @constructor
  5. @return {Object} instantiated LineModel
  6. **/
  7. define(['jquery', 'backbone'], function ($, Backbone) {
  8.  
  9. var LineModel = Backbone.Model.extend({
  10.  
  11. /**
  12. Constructor
  13. @method initialize
  14. **/
  15. initialize: function () {
  16. },
  17. urlRoot: BB.CONSTS.ROOT_URL + '/Line',
  18. idAttribute: 'line_id'
  19. });
  20.  
  21. return LineModel;
  22.  
  23. });