MOBILE-3330 message: Use native scrollTop value to avoid non updated val

main
Pau Ferrer Ocaña 2020-03-12 12:12:02 +01:00
parent fee7e200bc
commit a237a03753
1 changed files with 3 additions and 2 deletions

View File

@ -1056,13 +1056,14 @@ export class CoreDomUtilsProvider {
/** /**
* Returns scrollTop of the content. * Returns scrollTop of the content.
* Checks hidden property _scroll to avoid errors if view is not active. * Checks hidden property _scrollContent to avoid errors if view is not active.
* Using navite value of scroll to avoid having non updated values.
* *
* @param content Content where to execute the function. * @param content Content where to execute the function.
* @return Content scrollTop or 0. * @return Content scrollTop or 0.
*/ */
getScrollTop(content: Content): number { getScrollTop(content: Content): number {
return (content && content._scroll && content.scrollTop) || 0; return (content && content._scrollContent && content._scrollContent.nativeElement.scrollTop) || 0;
} }
/** /**