16 lines
251 B
HTML
16 lines
251 B
HTML
<script>
|
|
function bluetoothBlocked() {
|
|
let options = {
|
|
filters: [
|
|
{namePrefix: 'Prefix'}
|
|
]
|
|
}
|
|
try {
|
|
navigator.bluetooth.requestDevice(options).resolve('Waiting');
|
|
} catch (e) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
</script>
|