Browse Source

Remove junk changes, part II

pull/1084/head
desmaisons_david 8 years ago
parent
commit
b9e780f384
  1. 50
      Sortable.js

50
Sortable.js

@ -107,7 +107,7 @@
scrollOffsetX, scrollOffsetX,
scrollOffsetY scrollOffsetY
; ;
// Delect scrollEl // Delect scrollEl
if (scrollParentEl !== rootEl) { if (scrollParentEl !== rootEl) {
@ -158,7 +158,7 @@
scrollOffsetY = vy ? vy * speed : 0; scrollOffsetY = vy ? vy * speed : 0;
scrollOffsetX = vx ? vx * speed : 0; scrollOffsetX = vx ? vx * speed : 0;
if ('function' === typeof (scrollCustomFn)) { if ('function' === typeof(scrollCustomFn)) {
return scrollCustomFn.call(_this, scrollOffsetX, scrollOffsetY, evt); return scrollCustomFn.call(_this, scrollOffsetX, scrollOffsetY, evt);
} }
@ -200,7 +200,7 @@
var originalGroup = options.group; var originalGroup = options.group;
if (!originalGroup || typeof originalGroup != 'object') { if (!originalGroup || typeof originalGroup != 'object') {
originalGroup = { name: originalGroup }; originalGroup = {name: originalGroup};
} }
group.name = originalGroup.name; group.name = originalGroup.name;
@ -210,7 +210,7 @@
options.group = group; options.group = group;
} }
; ;
@ -261,7 +261,7 @@
fallbackClass: 'sortable-fallback', fallbackClass: 'sortable-fallback',
fallbackOnBody: false, fallbackOnBody: false,
fallbackTolerance: 0, fallbackTolerance: 0,
fallbackOffset: { x: 0, y: 0 } fallbackOffset: {x: 0, y: 0}
}; };
@ -384,7 +384,7 @@
dragEl = target; dragEl = target;
parentEl = dragEl.parentNode; parentEl = dragEl.parentNode;
nextEl = dragEl.nextSibling; nextEl = dragEl.nextSibling;
lastDownEl = target; lastDownEl = target
activeGroup = options.group; activeGroup = options.group;
oldIndex = startIndex; oldIndex = startIndex;
@ -552,7 +552,7 @@
_onTouchMove: function (/**TouchEvent*/evt) { _onTouchMove: function (/**TouchEvent*/evt) {
if (tapEvt) { if (tapEvt) {
var options = this.options, var options = this.options,
fallbackTolerance = options.fallbackTolerance, fallbackTolerance = options.fallbackTolerance,
fallbackOffset = options.fallbackOffset, fallbackOffset = options.fallbackOffset,
touch = evt.touches ? evt.touches[0] : evt, touch = evt.touches ? evt.touches[0] : evt,
@ -764,7 +764,7 @@
halfway = (floating ? (evt.clientX - targetRect.left) / width : (evt.clientY - targetRect.top) / height) > 0.5, halfway = (floating ? (evt.clientX - targetRect.left) / width : (evt.clientY - targetRect.top) / height) > 0.5,
nextSibling = target.nextElementSibling, nextSibling = target.nextElementSibling,
after after
; ;
if (floating) { if (floating) {
var elTop = dragEl.offsetTop, var elTop = dragEl.offsetTop,
@ -945,28 +945,28 @@
_nulling: function () { _nulling: function () {
rootEl = rootEl =
dragEl = dragEl =
parentEl = parentEl =
ghostEl = ghostEl =
nextEl = nextEl =
cloneEl = cloneEl =
lastDownEl = lastDownEl =
scrollEl = scrollEl =
scrollParentEl = scrollParentEl =
tapEvt = tapEvt =
touchEvt = touchEvt =
moved = moved =
newIndex = newIndex =
lastEl = lastEl =
lastCSS = lastCSS =
putSortable = putSortable =
activeGroup = activeGroup =
Sortable.active = null; Sortable.active = null;
}, },
handleEvent: function (/**Event*/evt) { handleEvent: function (/**Event*/evt) {

Loading…
Cancel
Save