mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-02-18 13:57:04 +00: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'
|
|
});
|
|
});
|