vgapp 0.8.2 → 0.8.3
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.
|
@@ -13,7 +13,10 @@ const EVENT_MOUSEDOWN = `mousedown.vg.${NAME}`;
|
|
|
13
13
|
const backdropDelay = 150; // Уменьшено для более плавного UX
|
|
14
14
|
|
|
15
15
|
class Backdrop {
|
|
16
|
-
static _rootEl
|
|
16
|
+
static get _rootEl() {
|
|
17
|
+
return document.body;
|
|
18
|
+
}
|
|
19
|
+
|
|
17
20
|
static _scrollbar = new ScrollBarHelper();
|
|
18
21
|
static _backdrop = null;
|
|
19
22
|
|