1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-13 01:45:38 +00:00
Sonarr/UI/Release/Model.js

15 lines
385 B
JavaScript
Raw Normal View History

"use strict";
2013-06-07 01:29:54 +00:00
define(['app'], function () {
NzbDrone.Release.Model = Backbone.Model.extend({
/* mutators: {
seasonNumber: function () {
return this.get('episode').seasonNumber;
},
paddedEpisodeNumber: function () {
return this.get('episode').episodeNumber.pad(2);
}
}*/
});
});