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
Via honey-badger I am getting a "Unable to get property 'modal' of undefined or null reference". It seems to only happen on windows phones. Here is the stacktrace that it gives:
This is the UA string I have: "Mozilla/5.0 (compatible; MSIE 10.0; Windows Phone 8.0; Trident/6.0; IEMobile/10.0; ARM; Touch; NOKIA; Lumia 920)"
I believe the problem is that the event.target.dataset property was only added in IE11 whereas this browser is running IE10. Can this be worked around in the code? I don't have a windows phone on me so I'm not sure how big of a problem this is causing my users.
The text was updated successfully, but these errors were encountered:
I have a similar issue where users clicking on an SVG element will trigger this in browsers w/o support for SVGElement#dataset. Recommend that it be changed to (event.target.dataset && event.target.dataset.modal && ...)
Via honey-badger I am getting a "Unable to get property 'modal' of undefined or null reference". It seems to only happen on windows phones. Here is the stacktrace that it gives:
This is the UA string I have: "Mozilla/5.0 (compatible; MSIE 10.0; Windows Phone 8.0; Trident/6.0; IEMobile/10.0; ARM; Touch; NOKIA; Lumia 920)"
I believe the problem is that the
event.target.dataset
property was only added in IE11 whereas this browser is running IE10. Can this be worked around in the code? I don't have a windows phone on me so I'm not sure how big of a problem this is causing my users.The text was updated successfully, but these errors were encountered: