Skip to content

Commit

Permalink
callee.js + caller.js: bitrate = 320000 (as var, not const)
Browse files Browse the repository at this point in the history
  • Loading branch information
mehrvarz committed Jun 9, 2022
1 parent c96a246 commit 16cc018
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webroot/callee/callee.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ const exclamationElement = document.getElementById('exclamation');
const autoReconnectDelay = 15;
const singlebutton = false;
const calleeMode = true;
const bitrate = 320000;

var bitrate = 320000;
var ringtoneSound = null;
var ringtoneIsPlaying = false;
var busySignalSound = null;
Expand Down
2 changes: 1 addition & 1 deletion webroot/user/caller.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ const enterIdVal = document.getElementById('enterIdVal');
const enterDomainVal = document.getElementById('enterDomainVal');
const divspinnerframe = document.querySelector('div#spinnerframe');
const calleeMode = false;
const bitrate = 320000;

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

0 comments on commit 16cc018

Please sign in to comment.