This repository has been archived by the owner on Jan 24, 2023. It is now read-only.
Releases: stroeer/stroeer-videoplayer-plugin-endcard
Releases · stroeer/stroeer-videoplayer-plugin-endcard
Release v1.0.6
Merge pull request #45 from stroeer/add-umd ✨ add a umd file to the dist as described in the package.json
Release v1.0.5
Release v1.0.4
v1.0.3 add .npmignore for dist files
What's Changed
- add npmignore to distribute dist files in package by @evaschmuhl in #39
Full Changelog: v1.0.2...v1.0.3
v1.0.2 rename event listener
What's Changed
- Fix/bb 2137 rename event listener by @evaschmuhl in #36
- Bump moment from 2.29.1 to 2.29.3 by @dependabot in #37
- BB-2137 change version to 1.0.2 by @evaschmuhl in #38
New Contributors
- @evaschmuhl made their first contribution in #36
- @dependabot made their first contribution in #37
Full Changelog: v1.0.1...v1.0.2
Release v1.0.1
v1.0.1
Release v0.13.1
Merge pull request #33 from stroeer/update-node-modules-and-gh-workflows Update node modules and gh workflows
Release v0.12.2
Sync package.json version with tag
Release v0.12.1
Fix gh npm publish workflow
Release v0.12.0
VideoEl-Events This release contains videoEl-Events based on the callback functions: - `plugin-endcard:revolverplay` -> `onRevolverplayCallback` - `plugin-endcard:click-to-play` -> `onClickToPlayCallback` - `plugin-endcard:click-to-replay` -> `onClickToReplayCallback` - `plugin-endcard:revolverplay-pause` -> `onRevolverplayPauseCallback` - `plugin-endcard:show` -> `onLoadedCallback` You can subscribe to such an event like this: ```javascript videoEl.addEventListener('plugin-endcard:show', () => { console.log('plugin-endcard:show event triggered'); }); ```