We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48467c1 commit 4794bd3Copy full SHA for 4794bd3
src/index.html
@@ -164,4 +164,13 @@ <h3>More Reading</h3>
164
if (/iPad|iPhone|iPod/.test(navigator.userAgent)) {
165
document.querySelector(".not-supported-i").classList.remove("hidden");
166
}
167
+
168
+ const ble = document.querySelector('improv-wifi-launch-button');
169
+ const serial = document.querySelector('improv-wifi-serial-launch-button');
170
+ ble.addEventListener('click', () => {
171
+ serial.outerHTML = '<button disabled>Disabled until page reload</button>';
172
+ });
173
+ serial.addEventListener('click', () => {
174
+ ble.outerHTML = '<button disabled>Disabled until page reload</button>';
175
176
</script>
0 commit comments