Commit 734cb7ce authored by Muhammadali's avatar Muhammadali

experement with voice verison:0.0.4

parent 4b1078a2
Pipeline #235 canceled with stages
{
"name": "boxdialer",
"version": "0.0.3",
"version": "0.0.4",
"description": "",
"main": "index.js",
"scripts": {
......
......@@ -52,12 +52,18 @@ export class BoxDialer {
document.head.appendChild(this.videoLocal);
document.head.appendChild(this.audioRemote);
// this.ringtone = new Audio(outcomingringTone);
// this.waitRingTone = new Audio(waitRingTone);
// this.pickSound = new Audio(pickSound);
this.ringtone = new Audio(outcomingringTone);
this.waitRingTone = new Audio(waitRingTone);
this.pickSound = new Audio(pickSound);
this.pickSound = document.createElement('audio');
this.pickSound.src = pickSound;
this.ringtone.loop = true;
this.waitRingTone.loop = true;
document.head.appendChild(this.pickSound);
this.oConfigCall = {
audio_remote: this.audioRemote,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment