xdamman / selection-sharer

Medium like popover menu to share on Twitter or by email any text selected on the page
MIT License
509 stars 104 forks source link

Does not work in Internet Explorer. #25

Closed Bitneko closed 8 years ago

Bitneko commented 8 years ago

The popover box did not appear when I highlight. I suspect that this has to do with IE not reading the background-image properly.

kerygmafabian commented 8 years ago

This is very easy to fix: Just replace line 150: var top = topOffset + window.scrollY - self.$popover.height();

with

var top = topOffset + window.pageYOffset - self.$popover.height();