@quartic/bokehjs
Version:
Interactive, novel data visualization
57 lines (41 loc) • 1.3 kB
text/typescript
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;
import {
Markup,
MarkupView
} from "./markup";
import {
div
} from "core/dom";
import * as p from "core/properties";
export var DivView = (function(superClass) {
extend(DivView, superClass);
function DivView() {
return DivView.__super__.constructor.apply(this, arguments);
}
DivView.prototype.render = function() {
var content;
DivView.__super__.render.call(this);
content = div();
if (this.model.render_as_text) {
content.textContent = this.model.text;
} else {
content.innerHTML = this.model.text;
}
this.$el.find('.bk-markup').append(content);
return this;
};
return DivView;
})(MarkupView);
export var Div = (function(superClass) {
extend(Div, superClass);
function Div() {
return Div.__super__.constructor.apply(this, arguments);
}
Div.prototype.type = "Div";
Div.prototype.default_view = DivView;
Div.define({
render_as_text: [p.Bool, false]
});
return Div;
})(Markup);