1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-19 13:20:28 +00:00
Lidarr/UI/Settings/Indexers/Options/View.js

14 lines
316 B
JavaScript
Raw Normal View History

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