1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-01 04:45:35 +00:00
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);
});