From 65870699f43fc90c8250f9fc9a5372e5e635a018 Mon Sep 17 00:00:00 2001 From: zilioti Date: Mon, 22 Oct 2018 12:18:53 -0300 Subject: [PATCH] Add keyup event for shift space previous slide (#706) --- js/impress.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/impress.js b/js/impress.js index bb99522..60fba7c 100644 --- a/js/impress.js +++ b/js/impress.js @@ -3203,6 +3203,7 @@ if ( event.shiftKey ) { switch ( event.keyCode ) { case 9: // Shift+tab + case 32: // Shift+space api.prev(); break; }