mirror of https://github.com/vector-im/riot-web
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>pull/21833/head
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…
Reference in New Issue