1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-15 02:45:58 +00:00
Sonarr/UI/Upcoming/UpcomingItemView.js
kay.one 663160c06a removed backbone from VS solution,
renamed NzbDrone.Backbone to UI
2013-03-29 12:18:44 -07:00

16 lines
No EOL
360 B
JavaScript

'use strict';
define([
'app',
'Upcoming/UpcomingCollection'
], function () {
NzbDrone.Upcoming.UpcomingItemView = Backbone.Marionette.ItemView.extend({
template: 'Upcoming/UpcomingItemTemplate',
tagName: 'tr',
onRender: function () {
NzbDrone.ModelBinder.bind(this.model, this.el);
}
})
})