mol_plot_all 1.2.1188 → 1.2.1189
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 +2 -4
- package/node.js.map +1 -1
- package/node.mjs +2 -4
- package/node.test.js +2 -4
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.deps.json +1 -1
- package/web.js +2 -4
- package/web.js.map +1 -1
- package/web.mjs +2 -4
package/web.js
CHANGED
|
@@ -1846,6 +1846,8 @@ var $;
|
|
|
1846
1846
|
const val = fields[key];
|
|
1847
1847
|
if (val === undefined)
|
|
1848
1848
|
continue;
|
|
1849
|
+
if (val === el[key])
|
|
1850
|
+
continue;
|
|
1849
1851
|
el[key] = val;
|
|
1850
1852
|
}
|
|
1851
1853
|
}
|
|
@@ -2140,7 +2142,6 @@ var $;
|
|
|
2140
2142
|
return suffix;
|
|
2141
2143
|
}
|
|
2142
2144
|
$.$mol_view_state_key = $mol_view_state_key;
|
|
2143
|
-
const error_showed = new WeakMap();
|
|
2144
2145
|
class $mol_view extends $mol_object {
|
|
2145
2146
|
static Root(id) {
|
|
2146
2147
|
return new this;
|
|
@@ -2287,14 +2288,11 @@ var $;
|
|
|
2287
2288
|
$mol_dom_render_attributes(node, { mol_view_error });
|
|
2288
2289
|
if ($mol_promise_like(error))
|
|
2289
2290
|
break render;
|
|
2290
|
-
if ((error_showed.get(error) ?? this) !== this)
|
|
2291
|
-
break render;
|
|
2292
2291
|
try {
|
|
2293
2292
|
const message = error.message || error;
|
|
2294
2293
|
node.innerText = message.replace(/^|$/mg, '\xA0\xA0');
|
|
2295
2294
|
}
|
|
2296
2295
|
catch { }
|
|
2297
|
-
error_showed.set(error, this);
|
|
2298
2296
|
}
|
|
2299
2297
|
try {
|
|
2300
2298
|
this.auto();
|