55 lines
1.2 KiB
JavaScript
55 lines
1.2 KiB
JavaScript
var $, Panel, PanelView, Widget, _, p,
|
|
extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
|
|
hasProp = {}.hasOwnProperty;
|
|
|
|
_ = require("underscore");
|
|
|
|
$ = require("jquery");
|
|
|
|
p = require("../../core/properties");
|
|
|
|
Widget = require("./widget");
|
|
|
|
PanelView = (function(superClass) {
|
|
extend(PanelView, superClass);
|
|
|
|
function PanelView() {
|
|
return PanelView.__super__.constructor.apply(this, arguments);
|
|
}
|
|
|
|
PanelView.prototype.render = function() {
|
|
PanelView.__super__.render.call(this);
|
|
this.$el.empty();
|
|
return this;
|
|
};
|
|
|
|
return PanelView;
|
|
|
|
})(Widget.View);
|
|
|
|
Panel = (function(superClass) {
|
|
extend(Panel, superClass);
|
|
|
|
function Panel() {
|
|
return Panel.__super__.constructor.apply(this, arguments);
|
|
}
|
|
|
|
Panel.prototype.type = "Panel";
|
|
|
|
Panel.prototype.default_view = PanelView;
|
|
|
|
Panel.define({
|
|
title: [p.String, ""],
|
|
child: [p.Instance],
|
|
closable: [p.Bool, false]
|
|
});
|
|
|
|
return Panel;
|
|
|
|
})(Widget.Model);
|
|
|
|
module.exports = {
|
|
Model: Panel,
|
|
View: PanelView
|
|
};
|