@vgroup/dialbox 0.0.43 → 0.0.44
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.
|
@@ -2199,7 +2199,7 @@ class DialboxComponent {
|
|
|
2199
2199
|
this.selectedCallerId = { number: contact.from };
|
|
2200
2200
|
this.isSmartDialCall = true;
|
|
2201
2201
|
setTimeout(() => {
|
|
2202
|
-
this.isDialpadHidden =
|
|
2202
|
+
this.isDialpadHidden = true;
|
|
2203
2203
|
}, 2000);
|
|
2204
2204
|
this.callData.phone = contact.number;
|
|
2205
2205
|
this.callData.name = contact.name;
|
|
@@ -2213,7 +2213,7 @@ class DialboxComponent {
|
|
|
2213
2213
|
else {
|
|
2214
2214
|
this.getUserCallSetting();
|
|
2215
2215
|
setTimeout(() => {
|
|
2216
|
-
this.isDialpadHidden =
|
|
2216
|
+
this.isDialpadHidden = true;
|
|
2217
2217
|
}, 1000);
|
|
2218
2218
|
this.getUserInformation(contact);
|
|
2219
2219
|
// this.incomingCallsList.push(contact)
|
|
@@ -2260,7 +2260,7 @@ class DialboxComponent {
|
|
|
2260
2260
|
}
|
|
2261
2261
|
else {
|
|
2262
2262
|
this.isCallInProgress = true;
|
|
2263
|
-
this.isDialpadHidden =
|
|
2263
|
+
this.isDialpadHidden = true;
|
|
2264
2264
|
this.callData.phone = incomingCallData.parameters['From'];
|
|
2265
2265
|
this.getUserInformation(incomingCallData);
|
|
2266
2266
|
this.callData.name = incomingCallData.customParameters.get('name');
|
|
@@ -2385,7 +2385,7 @@ class DialboxComponent {
|
|
|
2385
2385
|
}
|
|
2386
2386
|
}
|
|
2387
2387
|
hideDialpad() {
|
|
2388
|
-
this.isDialpadHidden =
|
|
2388
|
+
this.isDialpadHidden = false;
|
|
2389
2389
|
this.closeDialpadEvent.emit();
|
|
2390
2390
|
this.clearAllDialed();
|
|
2391
2391
|
this.filteredContactList = [];
|