mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 17:57:43 +00:00
b21e49f5fa
Download client moved to a layout Settings are only shown after all settings are loaded
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);
|
||
});
|