Skip to content

Commit

Permalink
Set z-index on hint container to max value
Browse files Browse the repository at this point in the history
  • Loading branch information
illfygli authored and fanglingsu committed Jan 5, 2022
1 parent 6dbde47 commit abff254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/hints.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit abff254

Please sign in to comment.