Skip to content
Snippets Groups Projects
Commit e80eb3eb authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Merge branch '340-browser-keyboard-shortcuts-do-not-work-on-some-pages' into 'develop'

Resolve "Browser keyboard shortcuts do not work on some pages"

Closes #985 and #340

See merge request funkwhale/funkwhale!965
parents 384599a1 7836b8a5
No related branches found
No related tags found
No related merge requests found
Fix issue with browser shortcuts such as search and focus URL not being recognised (#340, #985)
\ No newline at end of file
......@@ -215,10 +215,10 @@
@keydown.shift.right.prevent.exact="seek (30)"
@keydown.shift.left.prevent.exact="seek (-30)"
@keydown.m.prevent.exact="toggleMute"
@keydown.l.prevent.exact="$store.commit('player/toggleLooping')"
@keydown.s.prevent.exact="shuffle"
@keydown.f.prevent.exact="$store.dispatch('favorites/toggle', currentTrack.id)"
@keydown.q.prevent.exact="clean"
@keydown.l.exact="$store.commit('player/toggleLooping')"
@keydown.s.exact="shuffle"
@keydown.f.exact="$store.dispatch('favorites/toggle', currentTrack.id)"
@keydown.q.exact="clean"
/>
</div>
</section>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment