Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
b8802ff765
1 changed files with 1 additions and 1 deletions
|
@ -337,7 +337,7 @@ module.exports = React.createClass({
|
||||||
|
|
||||||
_addCodeCopyButton() {
|
_addCodeCopyButton() {
|
||||||
// Add 'copy' buttons to pre blocks
|
// Add 'copy' buttons to pre blocks
|
||||||
ReactDOM.findDOMNode(this).querySelectorAll('.mx_EventTile_body pre').forEach((p) => {
|
Array.from(ReactDOM.findDOMNode(this).querySelectorAll('.mx_EventTile_body pre')).forEach((p) => {
|
||||||
const button = document.createElement("span");
|
const button = document.createElement("span");
|
||||||
button.className = "mx_EventTile_copyButton";
|
button.className = "mx_EventTile_copyButton";
|
||||||
button.onclick = (e) => {
|
button.onclick = (e) => {
|
||||||
|
|
Loading…
Reference in a new issue