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