We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef9f14d commit 69da04aCopy full SHA for 69da04a
js/widgets/widgetWindows.js
@@ -91,6 +91,10 @@ class WidgetWindow {
91
this._setupLanguage();
92
93
// Global watchers
94
+ this._dragTopHandler = this._dragTopHandler.bind(this);
95
+ this._docMouseMoveHandler = this._docMouseMoveHandler.bind(this);
96
+ this._docMouseDownHandler = this._docMouseDownHandler.bind(this);
97
+
98
document.addEventListener("mouseup", this._dragTopHandler, true);
99
document.addEventListener("mousemove", this._docMouseMoveHandler, true);
100
document.addEventListener("mousedown", this._docMouseDownHandler, true);
0 commit comments