vim-web 0.3.44-dev.83 → 0.3.44-dev.84

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/vim-web.js CHANGED
@@ -52480,9 +52480,6 @@ class MouseHandler extends BaseInputHandler {
52480
52480
  this.reg(this._canvas, "wheel", (e) => {
52481
52481
  this.onMouseScroll(e);
52482
52482
  });
52483
- this.reg(this._canvas, "dblclick", (e) => {
52484
- this.handleDoubleClick(e);
52485
- });
52486
52483
  }
52487
52484
  dispose() {
52488
52485
  this.unregister();
@@ -52515,7 +52512,6 @@ class MouseHandler extends BaseInputHandler {
52515
52512
  var _a3;
52516
52513
  if (event.pointerType !== "mouse") return;
52517
52514
  if (event.button !== 0) return;
52518
- console.log("click!");
52519
52515
  const pos = this.relativePosition(event);
52520
52516
  if (!almostEqual(this._lastMouseDownPosition, pos, 0.01)) {
52521
52517
  return;
@@ -52534,7 +52530,6 @@ class MouseHandler extends BaseInputHandler {
52534
52530
  }
52535
52531
  async handleDoubleClick(event) {
52536
52532
  var _a3;
52537
- console.log("double click!");
52538
52533
  const pos = this.relativePosition(event);
52539
52534
  (_a3 = this.onDoubleClick) == null ? void 0 : _a3.call(this, pos);
52540
52535
  event.preventDefault();