mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-20 15:32:46 +01:00
17 lines
No EOL
386 B
JavaScript
17 lines
No EOL
386 B
JavaScript
'use strict';
|
|
|
|
define([
|
|
'app',
|
|
'Calendar/CalendarCollection'
|
|
|
|
], function () {
|
|
NzbDrone.Calendar.CalendarItemView = Backbone.Marionette.ItemView.extend({
|
|
template : 'Calendar/CalendarItemTemplate',
|
|
tagName : 'div',
|
|
className: 'event',
|
|
|
|
onRender: function () {
|
|
NzbDrone.ModelBinder.bind(this.model, this.el);
|
|
}
|
|
});
|
|
}); |