You can not 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
532 B
24 lines
532 B
define(
|
|
[
|
|
'marionette',
|
|
'Shared/Modal/ModalRegion'
|
|
], function (Marionette, ModalRegion) {
|
|
'use strict';
|
|
|
|
var Layout = Marionette.Layout.extend({
|
|
|
|
regions: {
|
|
navbarRegion: '#nav-region',
|
|
mainRegion : '#main-region'
|
|
},
|
|
|
|
initialize: function () {
|
|
this.addRegions({
|
|
modalRegion: ModalRegion
|
|
});
|
|
}
|
|
});
|
|
|
|
return new Layout({el: 'body'});
|
|
});
|