2013-02-23 23:08:22 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
define([
|
2013-03-29 23:28:58 +00:00
|
|
|
'app',
|
|
|
|
'Calendar/CalendarCollection'
|
2013-02-23 23:08:22 +00:00
|
|
|
|
|
|
|
], function () {
|
|
|
|
NzbDrone.Calendar.CalendarItemView = Backbone.Marionette.ItemView.extend({
|
2013-03-29 23:28:58 +00:00
|
|
|
template : 'Calendar/CalendarItemTemplate',
|
|
|
|
tagName : 'div',
|
2013-02-28 16:34:18 +00:00
|
|
|
className: 'event',
|
2013-02-23 23:08:22 +00:00
|
|
|
|
|
|
|
onRender: function () {
|
|
|
|
NzbDrone.ModelBinder.bind(this.model, this.el);
|
|
|
|
}
|
2013-03-30 19:30:00 +00:00
|
|
|
});
|
|
|
|
});
|