Commit 5f0c29a6 authored by Muhammadali's avatar Muhammadali

update-

parent 7514ea4a
...@@ -36,9 +36,7 @@ const CallHistoryInputDropdown = ({ ...@@ -36,9 +36,7 @@ const CallHistoryInputDropdown = ({
} }
}, [numberSelectHistory]); }, [numberSelectHistory]);
useEffect(() => { }, [ useEffect(() => {}, [document.getElementById('numbersDiv')]);
])
return ( return (
<Block> <Block>
......
...@@ -10,7 +10,7 @@ const Block = styled.div` ...@@ -10,7 +10,7 @@ const Block = styled.div`
const Input = styled.div` const Input = styled.div`
overflow-x: scroll; overflow-x: scroll;
overflow-y: hidden; overflow-y: hidden;
border: 1px solid red;
position: absolute; position: absolute;
top: 0; top: 0;
left: 0; left: 0;
...@@ -21,7 +21,7 @@ const Input = styled.div` ...@@ -21,7 +21,7 @@ const Input = styled.div`
max-height: 45px; max-height: 45px;
border-radius: 3px; border-radius: 3px;
background-color: #fff; background-color: #fff;
border: 0; /* border: 0; */
padding: 0 0 0 10px; padding: 0 0 0 10px;
font-size: 22px; font-size: 22px;
color: #000; color: #000;
......
...@@ -413,15 +413,21 @@ export class BoxDialer { ...@@ -413,15 +413,21 @@ export class BoxDialer {
callType: 'connected', callType: 'connected',
}, },
}); });
// this.callSession?.connection?.onaddstream = (e) => { if (this.callSession.connection) {
// console.log('--== UA Conn Added STREAM: ', e);
// let strmTrack = e.stream.getAudioTracks(); this.callSession?.connection?.onaddstream = (e) => {
// if (strmTrack[0]) { console.log('--== UA Conn Added STREAM: ', e);
// let rmMediaStream = new MediaStream([strmTrack[0]]); let strmTrack = e.stream.getAudioTracks();
// this.remoteAudio.srcObject = rmMediaStream; if (strmTrack[0]) {
// this.remoteAudio.play(); let rmMediaStream = new MediaStream([strmTrack[0]]);
// } this.remoteAudio.srcObject = rmMediaStream;
// }; this.remoteAudio.play();
}
};
} else {
console.error('connection not found')
}
// innerCallerModal; // innerCallerModal;
this.onSipStateChange.innerCallerModal({ this.onSipStateChange.innerCallerModal({
bool: true, bool: true,
......
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