Skip to content

Commit 16cc018

Browse files
committed
callee.js + caller.js: bitrate = 320000 (as var, not const)
1 parent c96a246 commit 16cc018

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

webroot/callee/callee.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ const exclamationElement = document.getElementById('exclamation');
2929
const autoReconnectDelay = 15;
3030
const singlebutton = false;
3131
const calleeMode = true;
32-
const bitrate = 320000;
3332

33+
var bitrate = 320000;
3434
var ringtoneSound = null;
3535
var ringtoneIsPlaying = false;
3636
var busySignalSound = null;

webroot/user/caller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ const enterIdVal = document.getElementById('enterIdVal');
88
const enterDomainVal = document.getElementById('enterDomainVal');
99
const divspinnerframe = document.querySelector('div#spinnerframe');
1010
const calleeMode = false;
11-
const bitrate = 320000;
1211

12+
var bitrate = 320000;
1313
var connectingText = "Connecting P2P...";
1414
var singleButtonReadyText = "Click to make your order<br>Live operator";
1515
var singleButtonBusyText = "All lines are busy.<br>Please try again a little later.";

0 commit comments

Comments
 (0)