blob: c9f763460273556ca3a8a819c901dd0d1e69d943 [file]
define(function(require) {
var Editor = Backbone.View.extend({});
Editor.prototype.openEdition = function (edition) {
this.pager.on('empty', this.welcome, this);
this.pager.on('selected', this.openPage, this);
$('.project-drawer-inner').append(this.pager.el);
};
Editor.prototype.welcome = function () {
this.text = "Welcome";
};
var editor = new Editor();
editor.welcome();
});