Commit 974ce48e authored by Muhammadali's avatar Muhammadali

verison: 0.0.9

parent eb75fdf4
Pipeline #240 failed with stages
{ {
"name": "boxdialer", "name": "boxdialer",
"version": "0.0.8", "version": "0.0.9",
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
......
...@@ -52,20 +52,12 @@ export class BoxDialer { ...@@ -52,20 +52,12 @@ export class BoxDialer {
document.body.appendChild(this.videoLocal); document.body.appendChild(this.videoLocal);
document.body.appendChild(this.audioRemote); document.body.appendChild(this.audioRemote);
// this.ringtone = new Audio(outcomingringTone);
// this.waitRingTone = new Audio(waitRingTone);
// this.pickSound = new Audio(pickSound);
this.ringtone = new Audio(outcomingringTone); this.ringtone = new Audio(outcomingringTone);
this.waitRingTone = new Audio(waitRingTone); this.waitRingTone = new Audio(waitRingTone);
this.pickSound = document.createElement('audio'); this.pickSound = new Audio(pickSound);
this.pickSound.src = pickSound;
this.pickSound.id = 'asdasd';
this.ringtone.loop = true; this.ringtone.loop = true;
this.waitRingTone.loop = true; this.waitRingTone.loop = true;
document.body.appendChild(this.pickSound);
this.pickSound = document.getElementById('asdasd');
this.oConfigCall = { this.oConfigCall = {
audio_remote: this.audioRemote, 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