@whitesev/utils 2.11.6 → 2.11.7

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.
@@ -240,7 +240,7 @@ var Utils = (function () {
240
240
  const setInterval$1 = (...args) => loadOrReturnBroker().setInterval(...args);
241
241
  const setTimeout$1 = (...args) => loadOrReturnBroker().setTimeout(...args);
242
242
 
243
- const version = "2.11.6";
243
+ const version = "2.11.7";
244
244
 
245
245
  /* eslint-disable */
246
246
  // ==UserScript==
@@ -6195,6 +6195,9 @@ var Utils = (function () {
6195
6195
  };
6196
6196
  }
6197
6197
  getMaxZIndexNodeInfoFromPoint($el, deviation) {
6198
+ if (typeof $el === "function") {
6199
+ $el = $el();
6200
+ }
6198
6201
  if (typeof $el === "number") {
6199
6202
  deviation = $el;
6200
6203
  $el = void 0;