mol_wire_dom 0.0.1535 → 0.0.1537
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.mjs
CHANGED
@@ -448,7 +448,7 @@ var $;
|
|
448
448
|
this.data.length = this.sub_from;
|
449
449
|
this.cursor = this.pub_from;
|
450
450
|
this.track_cut();
|
451
|
-
this.cursor = $mol_wire_cursor.
|
451
|
+
this.cursor = $mol_wire_cursor.stale;
|
452
452
|
}
|
453
453
|
track_cut() {
|
454
454
|
if (this.cursor < this.pub_from) {
|
@@ -1335,6 +1335,10 @@ var $;
|
|
1335
1335
|
this.emit();
|
1336
1336
|
return next;
|
1337
1337
|
}
|
1338
|
+
destructor() {
|
1339
|
+
super.destructor();
|
1340
|
+
this.cursor = $mol_wire_cursor.final;
|
1341
|
+
}
|
1338
1342
|
}
|
1339
1343
|
$.$mol_wire_task = $mol_wire_task;
|
1340
1344
|
})($ || ($ = {}));
|