mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
12 lines
254 B
JavaScript
12 lines
254 B
JavaScript
'use strict';
|
|
|
|
define([
|
|
'app',
|
|
'Calendar/CalendarCollection'
|
|
|
|
], function () {
|
|
NzbDrone.Calendar.CalendarItemView = Backbone.Marionette.ItemView.extend({
|
|
template : 'Calendar/CalendarItemTemplate',
|
|
tagName : 'div'
|
|
});
|
|
}); |