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

Commit

Permalink
end property wasnt being used in Firebase endAt function
Browse files Browse the repository at this point in the history
  • Loading branch information
sfeast committed Aug 31, 2014
1 parent c9857ea commit 2741ff8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firebase-element.html
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ <h3>My Firebase Data</h3>
query = query.startAt(this.start);
}
if (this.end) {
query = query.endAt(this.start);
query = query.endAt(this.end);
}
if (this.limit > 0) {
query = query.limit(this.limit);
Expand Down

0 comments on commit 2741ff8

Please sign in to comment.