(end, delta)
| 43910 | } |
| 43911 | |
| 43912 | function shiftUp(end, delta) { |
| 43913 | for (var j = end; j >= 0; j--) { |
| 43914 | if (list[j].y - delta < viewTop) { |
| 43915 | break; |
| 43916 | } |
| 43917 | |
| 43918 | list[j].y -= delta; |
| 43919 | if (j > 0 |
| 43920 | && list[j].y > list[j - 1].y + list[j - 1].height |
| 43921 | ) { |
| 43922 | break; |
| 43923 | } |
| 43924 | } |
| 43925 | } |
| 43926 | |
| 43927 | function changeX(list, isDownList, cx, cy, r, dir) { |
| 43928 | var lastDeltaX = dir > 0 |
no outgoing calls
no test coverage detected