0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-27 11:32:38 +00:00

Flip which arror is which.

This commit is contained in:
David Bolack
2024-08-20 13:18:48 -05:00
parent 81a098b6cf
commit 4957a0d2ef

View File

@@ -93,8 +93,8 @@ const Editor = createClass({
console.log(e);
const LEFTARROW_KEY = 37;
const RIGHTARROW_KEY = 39;
if (e.shiftKey && (e.keyCode == LEFTARROW_KEY)) this.brewJump();
if (e.shiftKey && (e.keyCode == RIGHTARROW_KEY)) this.sourceJump();
if (e.shiftKey && (e.keyCode == RIGHTARROW_KEY)) this.brewJump();
if (e.shiftKey && (e.keyCode == LEFTARROW_KEY)) this.sourceJump();
if ((e.keyCode == LEFTARROW_KEY) || (e.keyCode == RIGHTARROW_KEY)) {
e.stopPropagation();
e.preventDefault();