UNPKG

@quartic/bokehjs

Version:

Interactive, novel data visualization

40 lines (39 loc) 1.64 kB
"use strict"; 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"); exports.UndoToolView = (function (superClass) { extend(UndoToolView, superClass); function UndoToolView() { return UndoToolView.__super__.constructor.apply(this, arguments); } UndoToolView.prototype.initialize = function (options) { UndoToolView.__super__.initialize.call(this, options); return this.listenTo(this.plot_view, "state_changed", (function (_this) { return function () { return _this.model.disabled = !_this.plot_view.can_undo(); }; })(this)); }; UndoToolView.prototype["do"] = function () { return this.plot_view.undo(); }; return UndoToolView; })(action_tool_1.ActionToolView); exports.UndoTool = (function (superClass) { extend(UndoTool, superClass); function UndoTool() { return UndoTool.__super__.constructor.apply(this, arguments); } UndoTool.prototype.default_view = exports.UndoToolView; UndoTool.prototype.type = "UndoTool"; UndoTool.prototype.tool_name = "Undo"; UndoTool.prototype.icon = "bk-tool-icon-undo"; UndoTool.override({ disabled: true }); return UndoTool; })(action_tool_1.ActionTool);