Fix list undefined bug

This commit is contained in:
Daniel
2014-05-03 15:12:11 +02:00
parent 9acf14043d
commit 4f1599bc4f

View File

@@ -63,7 +63,7 @@ var ReactFireMixin = {
var out = [];
if (obj) {
if (this._isArray(obj)) {
out = list;
out = obj;
}
else if (typeof(obj) === "object") {
for (var key in obj) {