@mindedge/vuetify-player 0.4.6 → 0.4.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindedge/vuetify-player",
3
- "version": "0.4.6",
3
+ "version": "0.4.8",
4
4
  "private": false,
5
5
  "description": "Accessible, localized, full featured media player with Vuetifyjs",
6
6
  "author": "Jacob Rogaishio",
@@ -1378,9 +1378,6 @@ export default {
1378
1378
  margin-top: -25px;
1379
1379
  }
1380
1380
  }
1381
- .player-container {
1382
- overflow: hidden;
1383
- }
1384
1381
  .controls-container {
1385
1382
  height: 80px;
1386
1383
  position: relative;
@@ -543,6 +543,10 @@ export default {
543
543
  }
544
544
  },
545
545
  onKeydown(e) {
546
+ // prevent tab trap
547
+ if (e.code.toLowerCase() === 'tab') {
548
+ return
549
+ }
546
550
  // Only process keyboard events if the media is focused
547
551
  // This is just in case the media lost focus but the event listener wasn't removed for some reason
548
552
  if (this.mediaFocus) {