Sonarr/UI/Settings/DownloadClient/BlackholeView.js

16 lines
346 B
JavaScript
Raw Normal View History

'use strict';
define(
[
'marionette',
'Mixins/AsModelBoundView',
'bootstrap'
], function (Marionette, AsModelBoundView) {
var view = Marionette.ItemView.extend({
template : 'Settings/DownloadClient/BlackholeViewTemplate'
});
return AsModelBoundView.call(view);
});