Skip to content

Commit f1a5fb0

Browse files
committed
Fixed incorrect setting of zIndex property on hostDiv
1 parent 6437fe5 commit f1a5fb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content_scripts/dictionary.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
hostDiv.className = "dictionaryDiv";
6464
hostDiv.style.left = info.left -10 + "px";
6565
hostDiv.style.position = "absolute";
66-
hostDiv.stye.zIndex = "1000000"
66+
hostDiv.style.zIndex = "1000000"
6767
hostDiv.attachShadow({mode: 'open'});
6868

6969
var shadow = hostDiv.shadowRoot;

0 commit comments

Comments
 (0)