()
| 3897 | return window.pageXOffset || (document.documentElement || document.body).scrollLeft |
| 3898 | } |
| 3899 | function pageScrollY() { |
| 3900 | if (chrome && android) { |
| 3901 | return -(document.body.getBoundingClientRect().top - parseInt(getComputedStyle(document.body).marginTop)) |
| 3902 | } |
| 3903 | return window.pageYOffset || (document.documentElement || document.body).scrollTop |
| 3904 | } |
| 3905 | |
| 3906 | function widgetTopHeight(lineObj) { |
| 3907 | var height = 0 |
no outgoing calls
no test coverage detected