use requestAnimationFrame instead of setTimeOut

This commit is contained in:
Noa Nutkevitch 2019-07-03 15:46:10 +03:00
Родитель 7a4961352e
Коммит 51eb498648
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -250,7 +250,7 @@ export abstract class ReactWrapperComponent<TProps extends {}> implements AfterC
const nativeElement = this.elementRef.nativeElement;
// We want to wait until child elements are rendered
afterRenderFinished(() => {
requestAnimationFrame(() => {
if (nativeElement.firstElementChild) {
const rootChildDisplay = getComputedStyle(nativeElement.firstElementChild).display;
nativeElement.style.display = rootChildDisplay;