mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-27 10:07:10 +00:00
14 lines
383 B
JavaScript
14 lines
383 B
JavaScript
'use strict';
|
||
define(['backbone'], function (Backbone) {
|
||
return Backbone.Model.extend({
|
||
/* mutators: {
|
||
seasonNumber: function () {
|
||
return this.get('episode').seasonNumber;
|
||
},
|
||
|
||
paddedEpisodeNumber: function () {
|
||
return this.get('episode').episodeNumber.pad(2);
|
||
}
|
||
}*/
|
||
});
|
||
});
|