@quartic/bokehjs
Version:
Interactive, novel data visualization
26 lines (25 loc) • 1.02 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var 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;
var box_1 = require("./box");
exports.RowView = (function (superClass) {
extend(RowView, superClass);
function RowView() {
return RowView.__super__.constructor.apply(this, arguments);
}
RowView.prototype.className = "bk-grid-row";
return RowView;
})(box_1.BoxView);
exports.Row = (function (superClass) {
extend(Row, superClass);
Row.prototype.type = 'Row';
Row.prototype.default_view = exports.RowView;
function Row(attrs, options) {
Row.__super__.constructor.call(this, attrs, options);
this._horizontal = true;
}
return Row;
})(box_1.Box);