Skip to content

Instantly share code, notes, and snippets.

@astrotars
Created June 20, 2018 19:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save astrotars/a8a58d0eee0b3be7b2fdd1daab5f578d to your computer and use it in GitHub Desktop.
Save astrotars/a8a58d0eee0b3be7b2fdd1daab5f578d to your computer and use it in GitHub Desktop.
if (isElectron()) {
if (context.playing) {
window.ipcRenderer.send('media-controls', {
type: 'play',
title: `${episode.title} - ${episode.podcast.title}`,
});
} else {
window.ipcRenderer.send('media-controls', {
type: 'pause',
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment