1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 08:22:35 +01:00
Sonarr/NzbDrone.Web/_backboneApp/AddSeries/SearchResultModel.js

10 lines
277 B
JavaScript
Raw Normal View History

2013-01-23 02:23:27 +01:00
/// <reference path="../app.js" />
NzbDrone.AddSeries.SearchResultModel = Backbone.Model.extend({
mutators: {
seriesYear: function () {
var date = Date.utc.create(this.get('firstAired'));
return date.format('{yyyy}');
}
}
2013-01-23 02:23:27 +01:00
});