@vgroup/dialbox 0.4.95 → 0.4.97
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/components/call-progress/call-progress.component.mjs +3 -3
- package/fesm2015/vgroup-dialbox.mjs +2 -2
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +2 -2
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1783,7 +1783,7 @@ class CallProgressComponent {
|
|
|
1783
1783
|
this.filteredList = [];
|
|
1784
1784
|
this.showButton = false;
|
|
1785
1785
|
this.isRinging = false;
|
|
1786
|
-
this.incomingAudio = new Audio();
|
|
1786
|
+
this.incomingAudio = new Audio('../../../assets/phone-ringing.mp3');
|
|
1787
1787
|
this.micOn = false;
|
|
1788
1788
|
this.isMinimised = false;
|
|
1789
1789
|
console.log('Call Progress Component');
|
|
@@ -1793,7 +1793,7 @@ class CallProgressComponent {
|
|
|
1793
1793
|
console.log('Call Progress Component ngOnInit');
|
|
1794
1794
|
// Subscribe to incoming calls from TwilioService
|
|
1795
1795
|
try {
|
|
1796
|
-
this.incomingAudio = new Audio('assets/phone-ringing.mp3');
|
|
1796
|
+
// this.incomingAudio = new Audio('../../../assets/phone-ringing.mp3');
|
|
1797
1797
|
this.incomingAudio['loop'] = true;
|
|
1798
1798
|
this.twilioService.currentCall.subscribe((incoming) => {
|
|
1799
1799
|
if (!incoming) {
|