Skip to content

Commit 9cbbf49

Browse files
authored
Move fullscreen mode to after connection
Entry to fullscreen mode interferes with the Bluetooth selector, causing a security error.
1 parent 89b3ffe commit 9cbbf49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fpv/js/car.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ function onConnect() {
3737
elConnectBtn.style.right = "10px";
3838
elConnectBtn.innerHTML = "Connected";
3939
qs("#cam-controllers-wrapper").style.display = "block";
40+
document.documentElement.webkitRequestFullscreen();
4041
setTimeout(function() {
4142
startStream();
4243
}, 3000);
4344
}
4445

4546

4647
elConnectBtn.addEventListener("click", function() {
47-
document.documentElement.webkitRequestFullscreen();
4848
connect(function(){
4949
connected = true;
5050
onConnect();

0 commit comments

Comments
 (0)