sjy-ecos/public/lib/bokeh/js/tree/models/widgets/div.js

57 lines
1.3 KiB
JavaScript

var $, Div, DivView, Markup, 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("jquery");
Markup = require("./markup");
p = require("../../core/properties");
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);
if (this.model.render_as_text === true) {
$content = $('<div></div>').text(this.model.text);
} else {
$content = $('<div></div>').html(this.model.text);
}
this.$el.find('.bk-markup').append($content);
return this;
};
return DivView;
})(Markup.View);
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.Model);
module.exports = {
Model: Div,
View: DivView
};