Flat, round, designer-friendly pseudo-3D engine for canvas & SVG
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿž #53 fix chrome touch dragging

+5 -2
+5 -2
js/dragger.js
··· 48 48 49 49 Dragger.prototype.bindDrag = function( element ) { 50 50 element = this.getQueryElement( element ); 51 - if ( element ) { 52 - element.addEventListener( downEvent, this ); 51 + if ( !element ) { 52 + return; 53 53 } 54 + // disable browser gestures #53 55 + element.style.touchAction = 'none'; 56 + element.addEventListener( downEvent, this ); 54 57 }; 55 58 56 59 Dragger.prototype.getQueryElement = function( element ) {