fix react 0.14 warning from getDOMNode()

This commit is contained in:
Matthew Hodgson 2015-11-18 22:10:08 +00:00
parent 8fed464cf6
commit d66006893a

View File

@ -683,8 +683,7 @@ module.exports = {
var node = this.eventNodes[ev.getId()];
if (!node) continue;
var domNode = node.getDOMNode();
var boundingRect = domNode.getBoundingClientRect();
var boundingRect = node.getBoundingClientRect();
if (boundingRect.bottom < wrapperRect.bottom) {
return i;