You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warning: module.exports.getDOMNode(...) is deprecated. Please use ReactDOM.findDOMNode(instance) instead.
Warning: ReactDOMComponent: Do not access .getDOMNode() of a DOM node; instead, use the node directly. This DOM node was rendered by module.exports.
After some brain scratching (I'm a React noob), I found that changing line 137 from
DOMNode = this.refs[options.ref] || this;
``
Removes the warning.
I'm writing this in case others run into the issue or if you would like to fix it.
Hope this helps.
The text was updated successfully, but these errors were encountered:
Hello.
Thanks for the awesome plugin!
Little issue when I use it with React v0.14.6
I get the following errors:
After some brain scratching (I'm a React noob), I found that changing line 137 from
TO
The text was updated successfully, but these errors were encountered: