Skip to content

Commit

Permalink
Fixed incorrect setting of zIndex property on hostDiv
Browse files Browse the repository at this point in the history
  • Loading branch information
meetsuraj committed Dec 4, 2020
1 parent 6437fe5 commit f1a5fb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content_scripts/dictionary.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
hostDiv.className = "dictionaryDiv";
hostDiv.style.left = info.left -10 + "px";
hostDiv.style.position = "absolute";
hostDiv.stye.zIndex = "1000000"
hostDiv.style.zIndex = "1000000"
hostDiv.attachShadow({mode: 'open'});

var shadow = hostDiv.shadowRoot;
Expand Down

0 comments on commit f1a5fb0

Please sign in to comment.