@mindedge/vuetify-player 0.4.7 → 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.7",
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",
@@ -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) {