Skip to content

Commit

Permalink
Merge pull request soulwire#76 from dmnsgn/patch-1
Browse files Browse the repository at this point in the history
Remove webkitMovement deprecation warning
  • Loading branch information
soulwire committed Oct 26, 2015
2 parents e415b8f + 8646c6f commit 3d5b8e8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions js/sketch.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@
var object = {};

for ( var key in target ) {

if ( key === 'webkitMovementX' || key === 'webkitMovementY' )
continue;

if ( isFunction( target[ key ] ) )

Expand Down

0 comments on commit 3d5b8e8

Please sign in to comment.