mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-12 04:25:05 -05:00
18 lines
355 B
JavaScript
18 lines
355 B
JavaScript
"use strict";
|
|
|
|
var BasePage = require('pages/base');
|
|
var templates = require('templates');
|
|
|
|
|
|
module.exports = BasePage.extend({
|
|
template: templates.pages.wrapper,
|
|
initialize: function (spec) {
|
|
this.url = spec.url;
|
|
},
|
|
render: function () {
|
|
this.basicRender();
|
|
this.$el.load(this.url);
|
|
return this;
|
|
}
|
|
});
|