1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-28 02:40:01 +00:00
Radarr/UI/Calendar/CalendarItemView.js
2013-04-07 16:16:02 -07:00

16 lines
No EOL
358 B
JavaScript

'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);
}
});
});