mirror of https://github.com/lidarr/Lidarr
16 lines
340 B
JavaScript
16 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);
|
|||
|
});
|