Skip to content
Snippets Groups Projects
Commit 1eef0993 authored by Simon Döring's avatar Simon Döring
Browse files

Remove dummy reconnect buttons

parent 8ef6c399
Branches
No related tags found
No related merge requests found
......@@ -251,20 +251,6 @@ document.addEventListener('DOMContentLoaded', function() {
}
}
// TEST START
var testContainer = document.createElement('div');
testContainer.setAttribute('style', 'position: fixed; bottom: 0; right: 0;');
[0, 1, 2, 3].forEach(function(slot) {
var testButton = document.createElement('button');
testButton.innerText = 'Reconnect slot ' + slot;
testButton.onclick = function() {
reconnectRemoteFeed(slot);
};
testContainer.appendChild(testButton);
});
document.body.appendChild(testContainer);
// TEST END
function parseRoomFromURL() {
var urlParams = new URLSearchParams(window.location.search);
var roomParam = urlParams.get('room');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment