cordova-plugin-opentok icon indicating copy to clipboard operation
cordova-plugin-opentok copied to clipboard

Subscriber video enabled/disabled event trigger issue

Open ajay92x opened this issue 7 years ago • 0 comments

Subscriber video enabled/disabled event does not trigger in Android and iOS. The code i am using:-

subscriber.on("videoDisabled", function (event) { console.log(event.reason); // You may want to add or adjust other UI. if (event.reason == 'quality') {

                     } else if (event.reason == 'publishVideo') {
                          
                     }

                });

                subscriber.on("videoEnabled", function (event) {
                           console.log(event.reason);
                });

ajay92x avatar Mar 17 '17 09:03 ajay92x