Fixes for zones menu on freaking Arch.

This commit is contained in:
Revertron
2021-04-30 15:21:34 +02:00
parent 067898f2ff
commit cd65a0e020
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "alfis"
version = "0.4.35"
version = "0.4.36"
authors = ["Revertron <alfis@revertron.com>"]
edition = "2018"
build = "build.rs"
+1 -1
View File
@@ -490,7 +490,7 @@ function keystoreChanged(path, pub_key, hash) {
function closeZonesDropdown() {
var active = document.activeElement;
if (active == null || active.id != 'zones-menu') {
if (active == null || (active.id != 'zones-menu' && active.tagName != 'BODY')) {
document.getElementById("zones-dropdown").className = "dropdown";
}
}