Skip to content

Commit

Permalink
Merge 22ca084 into e3bbf46
Browse files Browse the repository at this point in the history
  • Loading branch information
bs1180 committed Mar 1, 2015
2 parents e3bbf46 + 22ca084 commit 65f7220
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/reactfire.js
Expand Up @@ -125,7 +125,9 @@ var ReactFireMixin = {
else if (typeof(obj) === "object") {
for (var key in obj) {
if (obj.hasOwnProperty(key)) {
out.push(obj[key]);
var child = obj[key];
child._ref = key;
out.push(child);
}
}
}
Expand Down

0 comments on commit 65f7220

Please sign in to comment.