From 7b3714603445d483fb544e6606023d8fba000d18 Mon Sep 17 00:00:00 2001 From: ansuz Date: Mon, 26 Jun 2017 18:32:29 +0200 Subject: [PATCH] don't let spacebar keyups propagate outside of the title --- www/common/toolbar2.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/www/common/toolbar2.js b/www/common/toolbar2.js index 7378c13e2..001eac3b6 100644 --- a/www/common/toolbar2.js +++ b/www/common/toolbar2.js @@ -492,6 +492,8 @@ define([ $pencilIcon.show(); $saveIcon.hide(); //$pencilIcon.css('display', ''); + } else if (e.which === 32) { + e.stopPropagation(); } }); $saveIcon.click(save);