--
You received this message because you are subscribed to the Google Groups "BigBlueButton-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to bigbluebutton-...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/bigbluebutton-dev/2ef5d085-b338-4751-92ee-056505acf356n%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/bigbluebutton-dev/889cba5b-cef2-42bc-a7f1-ba792344c80an%40googlegroups.com.
<script>
document.addEventListener('gesturestart', function (e) {
e.preventDefault();
});
window.onload = function () {
if (typeof history.pushState === "function") {
history.pushState("jibberish", null, null);
window.onpopstate = function () {
history.pushState('newjibberish', null, null);
// Handle the back (or forward) buttons here
// Will NOT handle refresh, use onbeforeunload for this.
var r = confirm("You pressed a Back button! Are you sure you want to leave the meeting room?");
if (r === true) {
var base_url = window.location.origin;
// Call Back button programmatically as per user confirmation.
window.location.replace(base_url);
// Uncomment below line to redirect to the previous page instead.
// window.location = document.referrer // Note: IE11 is not supporting this.
} else {
// Stay on the current page.
}
};
} else {
var ignoreHashChange = true;
window.onhashchange = function () {
if (!ignoreHashChange) {
ignoreHashChange = true;
window.location.hash = Math.random();
// Detect and redirect change here
// Works in older FF and IE9
// * it does mess with your hash symbol (anchor?) pound sign
// delimiter on the end of the URL
} else {
ignoreHashChange = false;
}
};
}
}
</script>
To view this discussion on the web visit https://groups.google.com/d/msgid/bigbluebutton-dev/56bd48c2-d25c-49dc-982c-cb12939b2240n%40googlegroups.com.
<script>
// The wake lock sentinel.
let wakeLock = null;
// Attempts to request a screen wake lock.
try {
console.log('Requesting for Screen Wake Lock');
wakeLock = navigator.wakeLock.request('screen')
wakeLock.addEventListener('release', () => {
console.log('Screen Wake Lock released:', wakeLock.released);
});
console.log('Screen Wake Lock released:', wakeLock.released);
} catch (err) {
console.error(`Wake Lock: An error occur on - ${err}`);
}
// test support
if ('wakeLock' in navigator) {
console.log('Screen Wake Lock API supported 🎉');
} else {
console.log('Wake lock is not supported by this browser.');
}
</script>
To view this discussion on the web visit https://groups.google.com/d/msgid/bigbluebutton-dev/c0b80e58-c947-4c0d-92d3-03e8a0ccb29an%40googlegroups.com.
Hello Fred,Is there any update here?I have something,
the issue with the WIFI with error code (1007), they can activate the (listen only), but they are getting error 1007 when choosing the microhpone,
To view this discussion on the web visit https://groups.google.com/d/msgid/bigbluebutton-dev/3e6ba284-59fb-4160-9880-c0dff967e219n%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/bigbluebutton-dev/CALeNOh06biZ9UBiNQutnbkzvT-f0HEX6ET0DaaXXdMs8GjmBqg%40mail.gmail.com.
(ice/INFO) /builds/worker/checkouts/gecko/dom/media/webrtc/transport/third_party/nICEr/src/net/nr_socket_multi_tcp.c:175 function nr_socket_multi_tcp_create_stun_server_socket skipping UDP STUN server(addr:IP4:0.0.0.0:3478/UDP)
(ice/INFO) /builds/worker/checkouts/gecko/dom/media/webrtc/transport/third_party/nICEr/src/net/nr_socket_multi_tcp.c:175 function nr_socket_multi_tcp_create_stun_server_socket skipping UDP STUN server(addr:IP6:[::]:3478/UDP)
(ice/INFO) /builds/worker/checkouts/gecko/dom/media/webrtc/transport/third_party/nICEr/src/net/nr_socket_multi_tcp.c:184 function nr_socket_multi_tcp_create_stun_server_socket skipping STUN with different IP version (6) than local socket (4),
Skipping TURN server because of address type mis-match
To view this discussion on the web visit https://groups.google.com/d/msgid/bigbluebutton-dev/cb8dbc9a-29f3-4668-8b92-ce08715c1294n%40googlegroups.com.