parent
9d1a3c9011
commit
22b7298542
|
@ -30,10 +30,14 @@ export default class SyntaxHighlight extends React.Component {
|
||||||
this._ref = this._ref.bind(this);
|
this._ref = this._ref.bind(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// componentDidUpdate used here for reusability
|
||||||
|
// componentWillReceiveProps fires too early to call highlightBlock on.
|
||||||
componentDidUpdate() {
|
componentDidUpdate() {
|
||||||
if (this._el) highlightBlock(this._el);
|
if (this._el) highlightBlock(this._el);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// call componentDidUpdate because _ref is fired on initial render
|
||||||
|
// which does not fire componentDidUpdate
|
||||||
_ref(el) {
|
_ref(el) {
|
||||||
this._el = el;
|
this._el = el;
|
||||||
this.componentDidUpdate();
|
this.componentDidUpdate();
|
||||||
|
|
Loading…
Reference in New Issue