Skip to content
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.

Releases: stroeer/stroeer-videoplayer-plugin-endcard

Release v1.0.6

03 Jun 10:22
55ad2f9
Compare
Choose a tag to compare
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

31 May 08:54
Compare
Choose a tag to compare

Release v1.0.4

30 May 07:34
Compare
Choose a tag to compare

v1.0.3 add .npmignore for dist files

27 Apr 10:57
a66b7ae
Compare
Choose a tag to compare

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

25 Apr 13:09
f07ac05
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.1...v1.0.2

Release v1.0.1

22 Apr 14:29
Compare
Choose a tag to compare

Release v0.13.1

30 Mar 08:04
fbcf643
Compare
Choose a tag to compare
Merge pull request #33 from stroeer/update-node-modules-and-gh-workflows

Update node modules and gh workflows

Release v0.12.2

23 Feb 16:13
f6a1978
Compare
Choose a tag to compare
Sync package.json version with tag

Release v0.12.1

23 Feb 16:08
cb9eb9a
Compare
Choose a tag to compare
Fix gh npm publish workflow

Release v0.12.0

23 Feb 16:02
3c6de0e
Compare
Choose a tag to compare
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');
});
```