-
Notifications
You must be signed in to change notification settings - Fork 786
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
'webkitMovementX' is deprecated. Please use 'movementX' instead. #277
Comments
All the properties of events are copied for interact.js' |
@taye Lame. I don't want to see that in my dev tools console. |
@lookfirst you could edit the Line 547 in 0b94aac
function extend (dest, source) {
for (var prop in source) {
dest[prop] = source[prop];
}
return dest;
} function extend (dest, source) {
for (var prop in source) {
if(prop != 'webkitMovementY' && prop != 'webkitMovementX')
dest[prop] = source[prop];
}
return dest;
} |
@baptistebriel Perfect... submit a PR. =) |
@taye How many duplicate issues will you close before fixing this? |
That solution was far from perfect.
You would have done better to give me reasons to prevent those warnings from showing up. You didn't write anything before that clearly meant that you were looking for a change in interact.js to remove the warnings. |
@taye Thanks for fixing things. |
You're welcome :) |
@taye New release time? =) |
Very soon, probably before the end of the week. And this time I mean it. |
#releaseearlyreleaseoften |
There aren't proper tests though so I didn't have the confidence to release and I was too busy to deal with potential bug reports. I'm working on the testing problem but it's a lot of work. |
Seeing this in Chrome 45.0.2454.85 (64-bit) dev tools console.
The text was updated successfully, but these errors were encountered: