@quartic/bokehjs
Version:
Interactive, novel data visualization
29 lines (28 loc) • 1.19 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 button_tool_1 = require("./button_tool");
exports.OnOffButtonView = (function (superClass) {
extend(OnOffButtonView, superClass);
function OnOffButtonView() {
return OnOffButtonView.__super__.constructor.apply(this, arguments);
}
OnOffButtonView.prototype.render = function () {
OnOffButtonView.__super__.render.call(this);
if (this.model.active) {
return this.el.classList.add('bk-active');
}
else {
return this.el.classList.remove('bk-active');
}
};
OnOffButtonView.prototype._clicked = function () {
var active;
active = this.model.active;
return this.model.active = !active;
};
return OnOffButtonView;
})(button_tool_1.ButtonToolButtonView);