Skip to content

Instantly share code, notes, and snippets.

@alexkonst
Created February 22, 2019 10:30
Show Gist options
  • Save alexkonst/60ac883e380ed9837bdab335d5683dcf to your computer and use it in GitHub Desktop.
Save alexkonst/60ac883e380ed9837bdab335d5683dcf to your computer and use it in GitHub Desktop.
All media events as array
// https://developer.mozilla.org/en/docs/Web/Guide/Events/Media_events
export const mediaEvents = [
'abort',
'canplay',
'canplaythrough',
'durationchange',
'emptied',
// 'encrypted',
'ended',
'error',
'interruptbegin',
'interruptend',
'loadeddata',
'loadedmetadata',
'loadstart',
// 'mozaudioavailable',
'pause',
'play',
'playing',
'progress',
'ratechange',
'seeked',
'seeking',
'stalled',
'suspend',
'timeupdate',
'volumechange',
'waiting',
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment