mol_plot_all 1.2.1524 → 1.2.1526
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/node.d.ts +1 -0
- package/node.d.ts.map +1 -1
- package/node.deps.json +1 -1
- package/node.js +5 -1
- package/node.js.map +1 -1
- package/node.mjs +5 -1
- package/node.test.js +5 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +1 -0
- package/web.d.ts.map +1 -1
- package/web.deps.json +1 -1
- package/web.js +5 -1
- package/web.js.map +1 -1
- package/web.mjs +5 -1
package/web.js
CHANGED
|
@@ -900,7 +900,7 @@ var $;
|
|
|
900
900
|
this.data.length = this.sub_from;
|
|
901
901
|
this.cursor = this.pub_from;
|
|
902
902
|
this.track_cut();
|
|
903
|
-
this.cursor = $mol_wire_cursor.
|
|
903
|
+
this.cursor = $mol_wire_cursor.stale;
|
|
904
904
|
}
|
|
905
905
|
track_cut() {
|
|
906
906
|
if (this.cursor < this.pub_from) {
|
|
@@ -1605,6 +1605,10 @@ var $;
|
|
|
1605
1605
|
this.emit();
|
|
1606
1606
|
return next;
|
|
1607
1607
|
}
|
|
1608
|
+
destructor() {
|
|
1609
|
+
super.destructor();
|
|
1610
|
+
this.cursor = $mol_wire_cursor.final;
|
|
1611
|
+
}
|
|
1608
1612
|
}
|
|
1609
1613
|
$.$mol_wire_task = $mol_wire_task;
|
|
1610
1614
|
})($ || ($ = {}));
|