We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here is how i'm trying to removeListener but remove function calls multiple times on each click.
removeListener
... methods:{ async seekVideo(seekTime){ await CapacitorVideoPlayer.setCurrentTime({ playerId:"nativeVideoPlayTranscript",seektime:seekTime}); // removing event listener here CapacitorVideoPlayer.removeListener('jeepCapVideoPlayerReady',this.seekVideo,false); }, async playVideo(url){ await CapacitorVideoPlayer.initPlayer({ mode: "fullscreen", url: url , playerId:"player",componentTag:"div"}); CapacitorVideoPlayer.addListener('jeepCapVideoPlayerReady',this.seekVideo.bind(null,4),false); }, }
The text was updated successfully, but these errors were encountered:
I think none of the questions are answered. does anyone know what i'm doing wrong? please help me.
Sorry, something went wrong.
No branches or pull requests
Here is how i'm trying to
removeListener
but remove function calls multiple times on each click.The text was updated successfully, but these errors were encountered: