myetv-player 1.6.3 → 1.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/css/myetv-player.css +451 -466
- package/css/myetv-player.min.css +1 -1
- package/dist/myetv-player.js +259 -148
- package/dist/myetv-player.min.js +183 -117
- package/package.json +3 -1
- package/plugins/youtube/myetv-player-youtube-plugin.js +52 -45
package/README.md
CHANGED
|
@@ -114,6 +114,7 @@ const player = new MYETVvideoplayer('my-video', {
|
|
|
114
114
|
| `showPictureInPicture` | boolean | `true` | Show Picture-in-Picture button |
|
|
115
115
|
| `showSubtitles` | boolean | `true` | Show subtitles controls (the button) - it is automatically true only if subtitles track are detected |
|
|
116
116
|
| `subtitlesEnabled` | boolean | `false` | Enable/Disable subtitles at player ready |
|
|
117
|
+
| `showSettingsMenu` | boolean | `true` | Show/Hide the settings menu in the top-bar |
|
|
117
118
|
| `chapters` | string | json | Enable/Disable chapters: chapter can be in json format or string format (see below) |
|
|
118
119
|
| `plugins` | string | json | Add a customized plugin to the player to extend its functionality (see below) |
|
|
119
120
|
| `seekHandleShape` | string | `true` | Edit the shape of the seek controlbar. Shape type: none, circle, square, diamond, arrow, triangle, heart, star |
|