Skip to content
This repository was archived by the owner on Mar 13, 2018. It is now read-only.

Commit ce9d993

Browse files
committed
Merge pull request #36 from atotic/patch-2
Fix keys being out of sync
2 parents a3c8fb1 + 1c6a085 commit ce9d993

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

firebase-element.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -460,9 +460,7 @@ <h3>My Firebase Data</h3>
460460
},
461461
dataChange: function() {
462462
//this.job('change', function() {
463-
if (this.data) {
464-
this.keys = this.data ? Object.keys(this.data) : [];
465-
}
463+
this.keys = this.data ? Object.keys(this.data) : [];
466464
this.fire('data-change');
467465
//});
468466
},

0 commit comments

Comments
 (0)