forked from EVOgeek/Vmeda.Online
		
	MOBILE-3053 rte: Fix toolbar sometimes has only one button
This commit is contained in:
		
							parent
							
								
									66cc892794
								
							
						
					
					
						commit
						bff2c111f3
					
				| @ -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; | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user