我将Naumen软电话与我的crm集成在一起。我这样拨打电话号码:
phoneControllerService.call(phonenumber);
如何捕获callEnd事件?我试图这样做:
document.addEventListener('DOMContentLoaded', function(){
phoneControllerService.onCloseEgg = MyCustomFunction;
})
function MyCustomFunction(){//my code here}
,但无法正常工作。