endcallbutton
This event fires when the user presses the end call button. The event overrides the default end call behavior.
Quick Example
document.addEventListener("endcallbutton", onEndCallKeyDown, false);
function onEndCallKeyDown() {
// Handle the end call button
}
Please login to continue.