diff options
author | ugla <ugla@u8.is> | 2021-12-29 22:03:33 +0100 |
---|---|---|
committer | rafa_99 <raroma09@gmail.com> | 2022-01-06 23:49:13 +0000 |
commit | cdc7da0df0232c30c1d7f3fa2d74f67b0b9d5a0c (patch) | |
tree | 0c8bcb6443152e5ce0741b8248053765221fa5b3 /src/scripts | |
parent | 79c154da9bdc88a09a115bedda9c8422ad05d88e (diff) |
Set z-index on hint container to max value
Diffstat (limited to 'src/scripts')
-rw-r--r-- | src/scripts/hints.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/hints.js b/src/scripts/hints.js index 1f887ec..d4b3d05 100644 --- a/src/scripts/hints.js +++ b/src/scripts/hints.js @@ -229,7 +229,7 @@ var hints = Object.freeze((function(){ hDiv.style.position = "fixed"; hDiv.style.top = "0"; hDiv.style.left = "0"; - hDiv.style.zIndex = "225000"; + hDiv.style.zIndex = "2147483647"; hDiv.appendChild(fragment); if (doc.body) { doc.body.appendChild(hDiv); |