@xuda.io/runtime-bundle 1.0.827 → 1.0.829
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.
|
@@ -27526,8 +27526,8 @@ func.UI.worker.init = async function (SESSION_ID) {
|
|
|
27526
27526
|
};
|
|
27527
27527
|
|
|
27528
27528
|
let last_job_in_queue = 0;
|
|
27529
|
-
let run_stat;
|
|
27530
|
-
const job_iterator = async function (
|
|
27529
|
+
// let run_stat;
|
|
27530
|
+
const job_iterator = async function () {
|
|
27531
27531
|
let from_job_num_to_run = last_job_in_queue;
|
|
27532
27532
|
last_job_in_queue = UI_WORKER_OBJ.num - from_job_num_to_run;
|
|
27533
27533
|
|
|
@@ -27543,7 +27543,6 @@ func.UI.worker.init = async function (SESSION_ID) {
|
|
|
27543
27543
|
break;
|
|
27544
27544
|
}
|
|
27545
27545
|
|
|
27546
|
-
console.log(testId);
|
|
27547
27546
|
// var _session = SESSION_OBJ[val.SESSION_ID];
|
|
27548
27547
|
// if (!UI_WORKER_OBJ.jobs[Number(key)] || val.job_num === 9999999)
|
|
27549
27548
|
// continue;
|
|
@@ -27571,18 +27570,18 @@ func.UI.worker.init = async function (SESSION_ID) {
|
|
|
27571
27570
|
this.attempt++;
|
|
27572
27571
|
}
|
|
27573
27572
|
// return job_iterator();
|
|
27574
|
-
run_stat = 0;
|
|
27573
|
+
// run_stat = 0;
|
|
27575
27574
|
};
|
|
27576
27575
|
// job_iterator();
|
|
27577
|
-
this._interval = setInterval(() => {
|
|
27578
|
-
|
|
27579
|
-
|
|
27580
|
-
|
|
27581
|
-
|
|
27582
|
-
|
|
27583
|
-
}, 10);
|
|
27576
|
+
// this._interval = setInterval(() => {
|
|
27577
|
+
// if (!run_stat) {
|
|
27578
|
+
// var testId = crypto.randomUUID();
|
|
27579
|
+
// run_stat = 1;
|
|
27580
|
+
// job_iterator(testId);
|
|
27581
|
+
// }
|
|
27582
|
+
// }, 10);
|
|
27584
27583
|
|
|
27585
|
-
|
|
27584
|
+
this._interval = setInterval(job_iterator, 1);
|
|
27586
27585
|
|
|
27587
27586
|
setInterval(async function () {
|
|
27588
27587
|
func.UI.ds_garbage_collector();
|
|
@@ -34395,10 +34394,10 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
34395
34394
|
$div.hover(
|
|
34396
34395
|
function (e) {
|
|
34397
34396
|
// hover_in($div);
|
|
34398
|
-
|
|
34397
|
+
func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
|
|
34399
34398
|
},
|
|
34400
34399
|
function (e) {
|
|
34401
|
-
|
|
34400
|
+
func.UI.screen.hover_out(SESSION_ID, $container, is_skeleton, paramsP);
|
|
34402
34401
|
// hover_out();
|
|
34403
34402
|
},
|
|
34404
34403
|
);
|