mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 16:13:58 -07: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);
|
||
}
|
||
}*/
|
||
});
|
||
});
|