Created
March 7, 2020 13:08
-
-
Save gotbahn/d04661f2607e6e89ed82608fb6dda69e to your computer and use it in GitHub Desktop.
Media Session. Next & Previous
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// to add playlist action handlers | |
if (/* has playlist */) { | |
window.navigator.mediasSession.setActionHandler('nexttrack', () => { /* your next item */ }); | |
window.navigator.mediasSession.setActionHandler('previoustrack', () => { /* your previous item */ }); | |
} | |
// to cancel playlist action handlers | |
window.navigator.mediasSession.setActionHandler('nexttrack', null); | |
window.navigator.mediasSession.setActionHandler('previoustrack', null); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment