You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
428 B
JavaScript
24 lines
428 B
JavaScript
define([
|
|
'marionette',
|
|
'core/layout/module'
|
|
], function AppDefine(Marionette, Layout) {
|
|
'use strict';
|
|
|
|
var Application = Marionette.Application;
|
|
|
|
function App(options) {
|
|
if (options == null) {
|
|
options = {};
|
|
}
|
|
Application.apply(this, arguments);
|
|
}
|
|
|
|
App.prototype = new Application();
|
|
|
|
App.prototype.initialize = function initialize() {
|
|
this.module('layout', Layout);
|
|
};
|
|
|
|
return App;
|
|
});
|