summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorFlorian <stayawake@lavabit.com>2014-02-16 00:58:49 +0100
committerFlorian <stayawake@lavabit.com>2014-02-16 00:58:49 +0100
commit010549c41168b6f3d47f236c647c6246e3c809a6 (patch)
treefd678c66ef39b553f1e66cd7d9a9bdc460ef7054 /js
parent1adff22c4bd400991e22496f657746fb725fdbd1 (diff)
bugfix: enter triggers hide form, after form display due to focus
Diffstat (limited to 'js')
-rw-r--r--js/cctv-control.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/js/cctv-control.js b/js/cctv-control.js
index 9f71276..b4e6fa7 100644
--- a/js/cctv-control.js
+++ b/js/cctv-control.js
@@ -153,7 +153,9 @@ function hideForm() {
localStorage.setItem("formAnalysis2", document.getElementById('formAnalysis2').value);
localStorage.setItem("formAnalysis3", document.getElementById('formAnalysis3').value);
- //hide form
+ //hide form and unfocus button
+ //otherwise next enter press will trigger print-function
+ document.getElementById('printButton').blur();
window.open('print.html', 'Printlayout');
document.getElementById("form").style.visibility = 'hidden';
formActive = 0;