Radarr/UI/Settings/General/GeneralView.js

11 lines
273 B
JavaScript
Raw Normal View History

'use strict';
2013-07-10 03:05:43 +00:00
define(['marionette', 'Mixins/AsModelBoundView'], function (Marionette, AsModelBoundView) {
var view = Marionette.ItemView.extend({
template: 'Settings/General/GeneralTemplate'
}
);
2013-07-10 03:05:43 +00:00
return AsModelBoundView.call(view);
});