Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
bokeh / server / static / js / lib / models / tools / actions / reset_tool.js
Size: Mime:
var _a;
import { ActionTool, ActionToolView } from "./action_tool";
import { tool_icon_reset } from "../../../styles/icons.css";
export class ResetToolView extends ActionToolView {
    doit() {
        // reset() issues the RangesUpdate event
        this.plot_view.reset();
    }
}
ResetToolView.__name__ = "ResetToolView";
export class ResetTool extends ActionTool {
    constructor(attrs) {
        super(attrs);
        this.tool_name = "Reset";
        this.icon = tool_icon_reset;
    }
}
_a = ResetTool;
ResetTool.__name__ = "ResetTool";
(() => {
    _a.prototype.default_view = ResetToolView;
    _a.register_alias("reset", () => new ResetTool());
})();
//# sourceMappingURL=reset_tool.js.map