1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-17 10:45:49 +02:00
Sonarr/UI/Settings/General/GeneralView.js

11 lines
273 B
JavaScript
Raw Normal View History

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