 6a6908c4c8
			
		
	
	
	
	
	6a6908c4c8* fix: allow cancelling of bluetooth requests allows cancelling of bluetooth requests when no devices present * docs: update docs to reflect how bluetooth works.
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			496 B
			
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			496 B
			
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
|   <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
 | |
|     <title>Web Bluetooth API</title>
 | |
|   </head>
 | |
|   <body>
 | |
|     <h1>Web Bluetooth API</h1>
 | |
| 
 | |
|     <button id="clickme">Test Bluetooth</button>
 | |
|     <button id="cancel">Cancel Bluetooth Request</button>
 | |
| 
 | |
|     <p>Currently selected bluetooth device: <strong id="device-name""></strong></p>
 | |
| 
 | |
|     <script src="./renderer.js"></script>
 | |
|   </body>
 | |
| </html>
 |