You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's an issue with the plugin not being able to properly position the suggestion portal on IE 11 (or any version of IE). Your computation of top and left offsets uses ScrollX and ScrollY which, when added to any number value, return NaN.
This might be fixed using window.pageXOffset and window.pageYOffset instead of window.scrollX and window.scrollY. As you can see here, using window.pageXOffset is better for cross-browser compatability.
The text was updated successfully, but these errors were encountered:
Hi,
There's an issue with the plugin not being able to properly position the suggestion portal on IE 11 (or any version of IE). Your computation of top and left offsets uses ScrollX and ScrollY which, when added to any number value, return NaN.
This might be fixed using window.pageXOffset and window.pageYOffset instead of window.scrollX and window.scrollY. As you can see here, using window.pageXOffset is better for cross-browser compatability.
The text was updated successfully, but these errors were encountered: