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 #8 from sfeast/end-fix
Browse files Browse the repository at this point in the history
end property wasnt being used in Firebase endAt function
  • Loading branch information
kevinpschaaf committed Sep 1, 2014
2 parents c9857ea + 2741ff8 commit 63a9a2e
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 63a9a2e

Please sign in to comment.