mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-12 12:35:00 -05:00
22 lines
398 B
JavaScript
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;
|
|
}
|
|
});
|