summaryrefslogtreecommitdiff
path: root/src/scripts/hints.js
diff options
context:
space:
mode:
authorugla <ugla@u8.is>2021-12-29 22:03:33 +0100
committerrafa_99 <raroma09@gmail.com>2022-01-06 23:49:13 +0000
commitcdc7da0df0232c30c1d7f3fa2d74f67b0b9d5a0c (patch)
tree0c8bcb6443152e5ce0741b8248053765221fa5b3 /src/scripts/hints.js
parent79c154da9bdc88a09a115bedda9c8422ad05d88e (diff)
Set z-index on hint container to max value
Diffstat (limited to 'src/scripts/hints.js')
-rw-r--r--src/scripts/hints.js2
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);