mirror of
https://github.com/Radarr/Radarr
synced 2025-02-12 17:45:13 +00:00
15 lines
343 B
JavaScript
15 lines
343 B
JavaScript
'use strict';
|
||
|
||
define(
|
||
[
|
||
'marionette',
|
||
'Mixins/AsModelBoundView',
|
||
'bootstrap'
|
||
], function (Marionette, AsModelBoundView) {
|
||
|
||
var view = Marionette.ItemView.extend({
|
||
template : 'Settings/DownloadClient/NzbgetViewTemplate'
|
||
});
|
||
|
||
return AsModelBoundView.call(view);
|
||
});
|