1
0
mirror of https://github.com/moparisthebest/kaiwa synced 2024-11-12 12:35:00 -05:00
kaiwa/clientapp/app/views/main.js
2013-08-20 10:45:06 -07:00

22 lines
398 B
JavaScript

/*global ui, app*/
var BasePage = require('pages/base'),
templates = require('templates');
module.exports = BasePage.extend({
template: templates.layout,
classBindings: {
},
contentBindings: {
},
hrefBindings: {
},
events: {
},
render: function () {
this.$el.html(this.template());
this.handleBindings();
return this;
}
});