Browse Source

Fixed the identation once again

pull/49/head
Marius Petcu 11 years ago
parent
commit
b45807462d
  1. 2
      Sortable.js

2
Sortable.js

@ -239,7 +239,7 @@
_onTouchMove: function (evt/**TouchEvent|PointerEvent*/){ _onTouchMove: function (evt/**TouchEvent|PointerEvent*/){
if( tapEvt ){ if( tapEvt ){
var var
touch = (evt.type == 'pointermove' || evt.type == 'MSPointerMove') ? evt : evt.touches[0] touch = evt.touches[0]
, dx = touch.clientX - tapEvt.clientX , dx = touch.clientX - tapEvt.clientX
, dy = touch.clientY - tapEvt.clientY , dy = touch.clientY - tapEvt.clientY
; ;

Loading…
Cancel
Save