fix react 0.14 warning from getDOMNode()

pull/397/head
Matthew Hodgson 2015-11-18 22:10:08 +00:00
parent 8fed464cf6
commit d66006893a
1 changed files with 1 additions and 2 deletions

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;