Commit f32c9408 authored by Muhammadali's avatar Muhammadali

update version: 0.6.6

parent 8f8939f6
{ {
"name": "boxdialer", "name": "boxdialer",
"version": "0.6.5", "version": "0.6.6",
"description": "", "description": "",
"main": "src/boxDialer.js", "main": "src/boxDialer.js",
"scripts": { "scripts": {
......
...@@ -18,7 +18,7 @@ import DropDownTailwind from '../TailwindComponents/DropDown'; ...@@ -18,7 +18,7 @@ import DropDownTailwind from '../TailwindComponents/DropDown';
import TimerUi from '../TimerUi'; import TimerUi from '../TimerUi';
import '../../index.css'; import '../../index.css';
const WidjetButton = ({ data, onSetDnd }) => { const WidjetButton = ({ data, onSetDnd, position }) => {
if (!data) { if (!data) {
data = { data = {
iscloud: true, iscloud: true,
......
...@@ -441,6 +441,7 @@ export class BoxDialer { ...@@ -441,6 +441,7 @@ export class BoxDialer {
} }
} }
stopCall() { stopCall() {
console.log('stopCall');
this.onSoundType({ type: 'ring', bool: false }); this.onSoundType({ type: 'ring', bool: false });
this.onSipStateChange.modalState({ this.onSipStateChange.modalState({
bool: false, bool: false,
...@@ -529,7 +530,7 @@ export class BoxDialer { ...@@ -529,7 +530,7 @@ export class BoxDialer {
} }
closeButtonClick() { closeButtonClick() {
console.log('closeButtonClick'); console.log('closeButtonClick');
this.stopCall() this.stopCall();
} }
transferButtonClick(number) { transferButtonClick(number) {
if (this.oSipSessionCall) { if (this.oSipSessionCall) {
...@@ -544,7 +545,7 @@ export class BoxDialer { ...@@ -544,7 +545,7 @@ export class BoxDialer {
bool: false, bool: false,
callType: 'answered', callType: 'answered',
callAnswerType: 'oncoming', callAnswerType: 'oncoming',
callFromName: null callFromName: null,
}); });
} }
} }
......
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