We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
On the Slideout demo page, moving the mouse in IE10+ throws the following error over and over again:
SCRIPT5007: Unable to get property '0' of undefined or null reference slideout, line 186 character 3494
and highlights the following minified JavaScript as the culprit:
var n=t.touches[0].clientX-e._startOffsetX;
It appears line 193 of the unminified slideout.js is the issue:
var dif_x = eve.touches[0].clientX - self._startOffsetX;
The text was updated successfully, but these errors were encountered:
This can be "fixed" by checking for the presence of eve.touches where it is referenced. For instance:
if (typeof eve.touches === 'undefined') { return; }
Though I'm sure there's a better way.
Sorry, something went wrong.
Mango#43 suppresses Internet Explorer errors.
965e714
Merge pull request #50 from johnbacon/master
3feb0a6
#43 suppresses Internet Explorer errors.
#50
No branches or pull requests
On the Slideout demo page, moving the mouse in IE10+ throws the following error over and over again:
and highlights the following minified JavaScript as the culprit:
It appears line 193 of the unminified slideout.js is the issue:
The text was updated successfully, but these errors were encountered: