-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added workaround for window.scrollX compat. #1941
Conversation
window.scrollX/Y is not available in IE11. As far as specifications go, is currently only specified in draft (http://dev.w3.org/csswg/cssom-view/#refsCSSOM). Falling back to window.pageXOffset seems like a good workaround. On a related note; my Emscriptified project runs on IE11 although performance is very poor (mostly due to Internet Explorer itself, I think). It's pretty finicky about the shaders, as they introduced an extra set of requirements. (inout/in/out keywords not supported, can't construct mat3 from mat4, etc).
Looks good, please just add a little comment explaining it is a fallback in case the browser does not support that feature. Link to your project? Curious to see performance on IE11 myself. I've heard it's WebGL implementation still has issues, hopefully those will be fixed in IE12... |
Added comments to fix as per @kripken's request. Added an assert too (guarded by ASSERTIONS define)
There we go, added an assert too. My project should be up shortly, I'll drop a note here when it is :D As for IE11's performance, I forgot I had GPU compositing turned off which caused a severe performance hit, d'oh. |
Forgot I had to explicitly check the type of variable type to see if it's undefined.
//(see: http://www.w3.org/TR/2013/WD-cssom-view-20131217/) | ||
var scrollX = ((typeof window.scrollX !== 'undefined') ? window.scrollX : window.pageXOffset); | ||
var scrollY = ((typeof window.scrollY !== 'undefined') ? window.scrollY : window.pageYOffset); | ||
#if ASSERTIONS |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please do not indent lines starting with #
(see other examples in our source files)
Done. |
Added workaround for window.scrollX compat.
window.scrollX/Y is not available in IE11. As far as specifications go, is currently only specified in draft (http://dev.w3.org/csswg/cssom-view/#refsCSSOM). Falling back to
window.pageXOffset seems like a good workaround.
On a related note; my Emscriptified project runs on IE11 although performance is very poor (mostly due to Internet Explorer itself, I think). It's pretty finicky about the shaders, as they introduced an extra set of requirements. (inout/in/out keywords not supported, can't construct mat3 from mat4, etc).