@xuda.io/runtime-bundle 1.0.828 → 1.0.830
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/js/xuda-runtime-slim.js
CHANGED
|
@@ -14727,10 +14727,10 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
14727
14727
|
$div.hover(
|
|
14728
14728
|
function (e) {
|
|
14729
14729
|
// hover_in($div);
|
|
14730
|
-
|
|
14730
|
+
func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
|
|
14731
14731
|
},
|
|
14732
14732
|
function (e) {
|
|
14733
|
-
|
|
14733
|
+
func.UI.screen.hover_out(SESSION_ID, $container, is_skeleton, paramsP);
|
|
14734
14734
|
// hover_out();
|
|
14735
14735
|
},
|
|
14736
14736
|
);
|
|
@@ -14767,6 +14767,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
14767
14767
|
// console.log('on>>', 'inViewport_' + $div.attr('xu-ui-id'));
|
|
14768
14768
|
// $div.on('inViewport_' + $div.attr('xu-ui-id'), function () {
|
|
14769
14769
|
$div.on('inViewport', function () {
|
|
14770
|
+
func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
|
|
14770
14771
|
func.UI.worker.add_to_queue(SESSION_ID, 'gui event', 'render_viewport', { $div, nodeP, parent_infoP, $root_container, paramsP, jobNoP, is_skeleton, keyP, refreshed_ds, parent_nodeP, check_existP, $container }, null, null, paramsP.dsSessionP);
|
|
14771
14772
|
// render_child();
|
|
14772
14773
|
// iterate_child($div, nodeP, parent_infoP, null, $root_container);
|
|
@@ -12435,10 +12435,10 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
12435
12435
|
$div.hover(
|
|
12436
12436
|
function (e) {
|
|
12437
12437
|
// hover_in($div);
|
|
12438
|
-
|
|
12438
|
+
func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
|
|
12439
12439
|
},
|
|
12440
12440
|
function (e) {
|
|
12441
|
-
|
|
12441
|
+
func.UI.screen.hover_out(SESSION_ID, $container, is_skeleton, paramsP);
|
|
12442
12442
|
// hover_out();
|
|
12443
12443
|
},
|
|
12444
12444
|
);
|
|
@@ -12475,6 +12475,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
12475
12475
|
// console.log('on>>', 'inViewport_' + $div.attr('xu-ui-id'));
|
|
12476
12476
|
// $div.on('inViewport_' + $div.attr('xu-ui-id'), function () {
|
|
12477
12477
|
$div.on('inViewport', function () {
|
|
12478
|
+
func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
|
|
12478
12479
|
func.UI.worker.add_to_queue(SESSION_ID, 'gui event', 'render_viewport', { $div, nodeP, parent_infoP, $root_container, paramsP, jobNoP, is_skeleton, keyP, refreshed_ds, parent_nodeP, check_existP, $container }, null, null, paramsP.dsSessionP);
|
|
12479
12480
|
// render_child();
|
|
12480
12481
|
// iterate_child($div, nodeP, parent_infoP, null, $root_container);
|