APIs

Show:
  1. /**
  2. The model holds a reference to a single station within the stations collection that was retrieved from a remote mediaSERVER
  3. @class StationModel
  4. @constructor
  5. @return {Object} instantiated StationModel
  6. **/
  7. define(['jquery', 'backbone'], function ($, Backbone) {
  8.  
  9. var StationModel = Backbone.Model.extend({
  10.  
  11. /**
  12. Constructor
  13. @method initialize
  14. **/
  15. initialize: function () {
  16. }
  17. })
  18.  
  19. return StationModel;
  20.  
  21. });