mol_plot_all 1.2.1234 → 1.2.1235
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.deps.json +1 -1
- package/node.js +3 -0
- package/node.js.map +1 -1
- package/node.mjs +3 -0
- package/node.test.js +3 -0
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +10 -10
- package/web.d.ts.map +1 -1
- package/web.deps.json +1 -1
- package/web.js +24 -21
- package/web.js.map +1 -1
- package/web.mjs +24 -21
package/node.mjs
CHANGED
|
@@ -3206,6 +3206,9 @@ var $;
|
|
|
3206
3206
|
const win = this.$.$mol_dom_context;
|
|
3207
3207
|
if (win.parent !== win.self && !win.document.hasFocus())
|
|
3208
3208
|
return;
|
|
3209
|
+
new this.$.$mol_after_timeout(0, () => {
|
|
3210
|
+
this.focused(true);
|
|
3211
|
+
});
|
|
3209
3212
|
}
|
|
3210
3213
|
destructor() {
|
|
3211
3214
|
const node = $mol_wire_probe(() => this.dom_node());
|
package/node.test.js
CHANGED
|
@@ -3197,6 +3197,9 @@ var $;
|
|
|
3197
3197
|
const win = this.$.$mol_dom_context;
|
|
3198
3198
|
if (win.parent !== win.self && !win.document.hasFocus())
|
|
3199
3199
|
return;
|
|
3200
|
+
new this.$.$mol_after_timeout(0, () => {
|
|
3201
|
+
this.focused(true);
|
|
3202
|
+
});
|
|
3200
3203
|
}
|
|
3201
3204
|
destructor() {
|
|
3202
3205
|
const node = $mol_wire_probe(() => this.dom_node());
|