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

Commit

Permalink
Merge pull request #36 from atotic/patch-2
Browse files Browse the repository at this point in the history
Fix keys being out of sync
  • Loading branch information
addyosmani committed Jan 24, 2015
2 parents a3c8fb1 + 1c6a085 commit ce9d993
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions firebase-element.html
Original file line number Diff line number Diff line change
Expand Up @@ -460,9 +460,7 @@ <h3>My Firebase Data</h3>
},
dataChange: function() {
//this.job('change', function() {
if (this.data) {
this.keys = this.data ? Object.keys(this.data) : [];
}
this.keys = this.data ? Object.keys(this.data) : [];
this.fire('data-change');
//});
},
Expand Down

0 comments on commit ce9d993

Please sign in to comment.