Merge pull request #66 from giuscri/sbar_ppause

Make spacebar trigger play/pause event
This commit is contained in:
Feross Aboukhadijeh 2016-03-07 10:49:11 -08:00
commit 3bb4a1ab3d

View file

@ -94,6 +94,8 @@ function init () {
} else {
dispatch('back')
}
} else if (e.which === 32) {
dispatch('playPause')
}
})