Radarr/UI/Calendar/CalendarItemView.js

16 lines
358 B
JavaScript
Raw Normal View History

'use strict';
define([
'app',
'Calendar/CalendarCollection'
], function () {
NzbDrone.Calendar.CalendarItemView = Backbone.Marionette.ItemView.extend({
template : 'Calendar/CalendarItemTemplate',
tagName : 'div',
onRender: function () {
NzbDrone.ModelBinder.bind(this.model, this.el);
}
2013-03-30 19:30:00 +00:00
});
});