(event)
| 21526 | var allowOverscrollOnElement = function(element, events) { |
| 21527 | if (!element) return; |
| 21528 | var _allowElementScroll = function(event) { |
| 21529 | event.stopPropagation(); |
| 21530 | }; |
| 21531 | events.on(element, "touchmove", _allowElementScroll, { |
| 21532 | passive: false |
| 21533 | }); |
nothing calls this directly
no test coverage detected