aboutsummaryrefslogtreecommitdiffstats
path: root/www/js/views/home.js
diff options
context:
space:
mode:
Diffstat (limited to 'www/js/views/home.js')
-rw-r--r--www/js/views/home.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/www/js/views/home.js b/www/js/views/home.js
new file mode 100644
index 0000000..644754d
--- /dev/null
+++ b/www/js/views/home.js
@@ -0,0 +1,9 @@
+;(function (FMS, Backbone, _, $) {
+ _.extend( FMS, {
+ HomeView: FMS.FMSView.extend({
+ template: 'home',
+ tag: 'div',
+ id: 'front-page'
+ })
+ });
+})(FMS, Backbone, _, $);