@xuda.io/runtime-bundle 1.0.841 → 1.0.842
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.
|
@@ -33763,8 +33763,8 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
33763
33763
|
}
|
|
33764
33764
|
};
|
|
33765
33765
|
|
|
33766
|
-
const hover_in = function ($div) {
|
|
33767
|
-
if (is_skeleton || EXP_BUSY || UI_WORKER_OBJ.jobs.length) return;
|
|
33766
|
+
const hover_in = function ($div, e) {
|
|
33767
|
+
if (e && (is_skeleton || EXP_BUSY || UI_WORKER_OBJ.jobs.length)) return;
|
|
33768
33768
|
CLIENT_ACTIVITY_TS = Date.now();
|
|
33769
33769
|
if (_$($container)?.data()?.xuData?.debug_info) _$($container).data().xuData.debug_info.hover_item = $div.attr('xu-ui-id');
|
|
33770
33770
|
if (!_ds) return;
|
|
@@ -34393,7 +34393,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
34393
34393
|
|
|
34394
34394
|
$div.hover(
|
|
34395
34395
|
function (e) {
|
|
34396
|
-
hover_in($div);
|
|
34396
|
+
hover_in($div, e);
|
|
34397
34397
|
// func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
|
|
34398
34398
|
},
|
|
34399
34399
|
function (e) {
|