promotionModel.js 203 B

123456789101112131415
  1. define( [], function() {
  2. var model = Backbone.Model.extend( {
  3. defaults: {
  4. id: '',
  5. content: '',
  6. },
  7. initialize: function() {
  8. /* ... */
  9. },
  10. } );
  11. return model;
  12. } );