2013-02-20 07:45:52 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
define([
|
2013-03-29 23:28:58 +00:00
|
|
|
'app',
|
|
|
|
'Upcoming/UpcomingCollection'
|
2013-02-20 07:45:52 +00:00
|
|
|
|
|
|
|
], function () {
|
|
|
|
NzbDrone.Upcoming.UpcomingItemView = Backbone.Marionette.ItemView.extend({
|
|
|
|
template: 'Upcoming/UpcomingItemTemplate',
|
2013-03-29 23:28:58 +00:00
|
|
|
tagName : 'tr',
|
2013-02-20 07:45:52 +00:00
|
|
|
|
|
|
|
onRender: function () {
|
|
|
|
NzbDrone.ModelBinder.bind(this.model, this.el);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|