(listView)
| 754 | } |
| 755 | |
| 756 | export function skipFirstAnimation(listView) { |
| 757 | var firstAnimation = true; |
| 758 | listView.addEventListener("contentanimating", function (eventObject) { |
| 759 | if (firstAnimation) { |
| 760 | firstAnimation = false; |
| 761 | eventObject.preventDefault(); |
| 762 | } |
| 763 | }); |
| 764 | } |
| 765 | } |
nothing calls this directly
no test coverage detected