mirror of
				https://github.com/vector-im/element-web.git
				synced 2025-10-31 16:21:46 +01:00 
			
		
		
		
	Move the _addCodeElement() call down a bit
We can skip this if the first if statement is true Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
		
							parent
							
								
									c965119410
								
							
						
					
					
						commit
						c9baff1e10
					
				| @ -96,11 +96,13 @@ export default class TextualBody extends React.Component { | ||||
|             const pres = ReactDOM.findDOMNode(this).getElementsByTagName("pre"); | ||||
|             if (pres.length > 0) { | ||||
|                 for (let i = 0; i < pres.length; i++) { | ||||
|                     // Add code element if it's missing
 | ||||
|                     if (!pres[i].getElementsByTagName("code")[0]) this._addCodeElement(pres[i]); | ||||
|                     // If there already is a div wrapping the codeblock we want to skip this.
 | ||||
|                     // This happens after the codeblock was edited.
 | ||||
|                     if (pres[i].parentNode.className == "mx_EventTile_pre_container") continue; | ||||
|                     // Add code element if it's missing
 | ||||
|                     if (!pres[i].getElementsByTagName("code")[0]) { | ||||
|                         this._addCodeElement(pres[i]); | ||||
|                     } | ||||
|                     // Wrap a div around <pre> so that the copy button can be correctly positioned
 | ||||
|                     // when the <pre> overflows and is scrolled horizontally.
 | ||||
|                     const div = this._wrapInDiv(pres[i]); | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user