Skip to content

Commit 5656130

Browse files
committed
Up arrow zooms in, just like scrolling up does.
1 parent 743abc7 commit 5656130

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ui-scripts/zoomer/zoomer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,8 @@ var ZoomerPrototype = function()
218218
this.move_overlay(diff);
219219

220220
diff = {
221-
38: KEYDOWN_DIFF, // Arrow up
222-
40: -KEYDOWN_DIFF // Arrow down
221+
38: -KEYDOWN_DIFF, // Arrow up
222+
40: KEYDOWN_DIFF // Arrow down
223223
}[event.which];
224224
if (diff)
225225
this.change_overlay_size(-diff, diff);

0 commit comments

Comments
 (0)