mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-19 21:44:30 -04:00
14 lines
330 B
JavaScript
14 lines
330 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'marionette',
|
|
'Mixins/AsModelBoundView'
|
|
], function (Marionette, AsModelBoundView) {
|
|
|
|
var view = Marionette.ItemView.extend({
|
|
template: 'Settings/Indexers/Options/IndexerOptionsViewTemplate'
|
|
});
|
|
|
|
return AsModelBoundView.call(view);
|
|
});
|