Radarr/src/UI/Series/SeasonModel.js
Mark McDowall b6fc490b89 Series detials fixes
Fixed: Adding a new series and going to series details will show data after information is fetched
Fixed: Series details won't reload view after update
2014-11-06 07:34:15 -08:00

17 lines
322 B
JavaScript

'use strict';
define(
[
'backbone'
], function (Backbone) {
return Backbone.Model.extend({
defaults: {
seasonNumber: 0
},
initialize: function () {
this.set('id', this.get('seasonNumber'));
}
});
});