(e)
| 1109 | duringDragEvents['touchend mouseup'] = stop; |
| 1110 | |
| 1111 | function prevent(e) { |
| 1112 | if (e.stopPropagation) { |
| 1113 | e.stopPropagation(); |
| 1114 | } |
| 1115 | if (e.preventDefault) { |
| 1116 | e.preventDefault(); |
| 1117 | } |
| 1118 | e.returnValue = false; |
| 1119 | } |
| 1120 | |
| 1121 | function move(e) { |
| 1122 | if (dragging) { |
no test coverage detected