mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
14 lines
263 B
JavaScript
14 lines
263 B
JavaScript
"use strict";
|
|
|
|
define([
|
|
'app',
|
|
'Settings/Indexers/Collection'
|
|
|
|
], function () {
|
|
|
|
NzbDrone.Settings.Indexers.ItemView = Backbone.Marionette.ItemView.extend({
|
|
template : 'Settings/Indexers/ItemTemplate',
|
|
tagName : 'li'
|
|
});
|
|
});
|