1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-03 05:13:05 +00:00
Radarr/UI/Settings/Indexers/IndexersView.js
2013-03-29 16:28:58 -07:00

15 lines
337 B
JavaScript

'use strict';
define([
'app', 'Settings/SettingsModel'
], function () {
NzbDrone.Settings.Indexers.IndexersView = Backbone.Marionette.ItemView.extend({
template: 'Settings/Indexers/IndexersTemplate',
onRender: function () {
NzbDrone.ModelBinder.bind(this.model, this.el);
}
});
});