MOBILE-3053 rte: Fix toolbar sometimes has only one button

main
Albert Gasset 2019-07-18 16:51:29 +02:00
parent 66cc892794
commit bff2c111f3
1 changed files with 4 additions and 3 deletions

View File

@ -608,14 +608,15 @@ export class CoreRichTextEditorComponent implements AfterContentInit, OnDestroy
return;
}
if (!(this.toolbarSlides as any)._init) {
// Slides is not initialized yet, try later.
const width = this.domUtils.getElementWidth(this.toolbar.nativeElement);
if (!(this.toolbarSlides as any)._init || !width) {
// Slides is not initialized or width is not available yet, try later.
setTimeout(this.updateToolbarButtons.bind(this), 100);
return;
}
const width = this.domUtils.getElementWidth(this.toolbar.nativeElement);
if (width > this.toolbarSlides.length() * this.toolbarButtonWidth) {
this.numToolbarButtons = this.toolbarSlides.length();
this.toolbarArrows = false;