(element: HTMLElement)
| 37 | } |
| 38 | |
| 39 | function scrollTop(element: HTMLElement) { |
| 40 | if (isOnServer) { |
| 41 | return 0; |
| 42 | } |
| 43 | if (element === document.body) { |
| 44 | return ( |
| 45 | window.pageYOffset || |
| 46 | (document.documentElement && document.documentElement.scrollTop) || |
| 47 | document.body.scrollTop |
| 48 | ); |
| 49 | } else { |
| 50 | return element.scrollTop; |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | var browserSupportsPassive = false; |
| 55 | if (isInBrowser) { |
no outgoing calls
no test coverage detected