1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-27 18:17:13 +00:00
Lidarr/UI/Settings/Indexers/ItemView.js

14 lines
263 B
JavaScript
Raw Normal View History

2013-05-01 00:01:54 +00:00
"use strict";
define([
'app',
'Settings/Indexers/Collection'
], function () {
NzbDrone.Settings.Indexers.ItemView = Backbone.Marionette.ItemView.extend({
2013-05-29 07:14:48 +00:00
template : 'Settings/Indexers/ItemTemplate',
tagName : 'li'
2013-05-01 00:01:54 +00:00
});
});