@quartic/bokehjs
Version:
Interactive, novel data visualization
39 lines (38 loc) • 1.61 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 action_tool_1 = require("./action_tool");
var p = require("core/properties");
exports.HelpToolView = (function (superClass) {
extend(HelpToolView, superClass);
function HelpToolView() {
return HelpToolView.__super__.constructor.apply(this, arguments);
}
HelpToolView.prototype["do"] = function () {
return window.open(this.model.redirect);
};
return HelpToolView;
})(action_tool_1.ActionToolView);
exports.HelpTool = (function (superClass) {
extend(HelpTool, superClass);
function HelpTool() {
return HelpTool.__super__.constructor.apply(this, arguments);
}
HelpTool.prototype.default_view = exports.HelpToolView;
HelpTool.prototype.type = "HelpTool";
HelpTool.prototype.tool_name = "Help";
HelpTool.prototype.icon = "bk-tool-icon-help";
HelpTool.define({
help_tooltip: [p.String, 'Click the question mark to learn more about Bokeh plot tools.'],
redirect: [p.String, 'http://bokeh.pydata.org/en/latest/docs/user_guide/tools.html']
});
HelpTool.getters({
tooltip: function () {
return this.help_tooltip;
}
});
return HelpTool;
})(action_tool_1.ActionTool);