Skip to content

Commit

Permalink
Merge pull request #6462 from Wildhoney/master
Browse files Browse the repository at this point in the history
Re-added support for attaching events to document fragments
  • Loading branch information
jimfb committed Apr 14, 2016
2 parents 932334d + 167c27e commit 0b1fd18
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/renderers/dom/shared/ReactDOMComponent.js
Expand Up @@ -60,6 +60,9 @@ var RESERVED_PROPS = {
suppressContentEditableWarning: null,
};

// Node type for document fragments (Node.DOCUMENT_FRAGMENT_NODE).
var DOC_FRAGMENT_TYPE = 11;


function getDeclarationErrorAddendum(internalInstance) {
if (internalInstance) {
Expand Down Expand Up @@ -213,7 +216,8 @@ function enqueuePutListener(inst, registrationName, listener, transaction) {
);
}
var containerInfo = inst._nativeContainerInfo;
var doc = containerInfo._ownerDocument;
var isDocumentFragment = containerInfo._node && containerInfo._node.nodeType === DOC_FRAGMENT_TYPE;
var doc = isDocumentFragment ? containerInfo._node : containerInfo._ownerDocument;
if (!doc) {
// Server rendering.
return;
Expand Down
1 change: 1 addition & 0 deletions src/renderers/dom/shared/ReactDOMContainerInfo.js
Expand Up @@ -22,6 +22,7 @@ function ReactDOMContainerInfo(topLevelWrapper, node) {
_ownerDocument: node ?
node.nodeType === DOC_NODE_TYPE ? node : node.ownerDocument :
null,
_node: node,
_tag: node ? node.nodeName.toLowerCase() : null,
_namespaceURI: node ? node.namespaceURI : null,
};
Expand Down

0 comments on commit 0b1fd18

Please sign in to comment.