1
0
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:
Antoine
2016-04-07 12:42:30 +02:00
commit 91e5d1476e
36 changed files with 39970 additions and 0 deletions

18
js/app/views/main.js Normal file
View 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;
});