mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-07 15:02:54 +00:00
15 lines
340 B
JavaScript
15 lines
340 B
JavaScript
'use strict';
|
||
|
||
define(
|
||
[
|
||
'marionette',
|
||
'Mixins/AsModelBoundView',
|
||
'bootstrap'
|
||
], function (Marionette, AsModelBoundView) {
|
||
|
||
var view = Marionette.ItemView.extend({
|
||
template : 'Settings/DownloadClient/SabViewTemplate'
|
||
});
|
||
|
||
return AsModelBoundView.call(view);
|
||
});
|