mirror of
https://github.com/2ec0b4/kaamelott-soundboard.git
synced 2025-12-09 16:05:35 +00:00
Initialise le projet
This commit is contained in:
18
js/app/views/main.js
Normal file
18
js/app/views/main.js
Normal file
@@ -0,0 +1,18 @@
|
||||
define(
|
||||
'views/main',
|
||||
[
|
||||
'marionette',
|
||||
'hbs!templates/main'
|
||||
],
|
||||
function (Marionette, MainTemplate) {
|
||||
"use strict";
|
||||
|
||||
var MainView = Marionette.LayoutView.extend({
|
||||
template: MainTemplate,
|
||||
regions: {
|
||||
'main': 'main'
|
||||
}
|
||||
});
|
||||
|
||||
return MainView;
|
||||
});
|
||||
Reference in New Issue
Block a user