@rogieking/figui3 1.0.41 → 1.0.42
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/example.html +1 -0
- package/fig.css +5 -0
- package/fig.js +0 -4
- package/package.json +1 -1
package/example.html
CHANGED
package/fig.css
CHANGED
package/fig.js
CHANGED
|
@@ -1302,7 +1302,6 @@ class FigChit extends HTMLElement {
|
|
|
1302
1302
|
|
|
1303
1303
|
requestAnimationFrame(() => {
|
|
1304
1304
|
this.input = this.querySelector("input");
|
|
1305
|
-
this.input.disabled = this.disabled;
|
|
1306
1305
|
this.updateSrc(this.src);
|
|
1307
1306
|
});
|
|
1308
1307
|
}
|
|
@@ -1323,9 +1322,6 @@ class FigChit extends HTMLElement {
|
|
|
1323
1322
|
}
|
|
1324
1323
|
if (name === "disabled") {
|
|
1325
1324
|
this.disabled = newValue.toLowerCase() === "true";
|
|
1326
|
-
if (this.input) {
|
|
1327
|
-
this.input.disabled = this.disabled;
|
|
1328
|
-
}
|
|
1329
1325
|
}
|
|
1330
1326
|
}
|
|
1331
1327
|
}
|
package/package.json
CHANGED