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

Commit

Permalink
Bugfixes from firebase-list
Browse files Browse the repository at this point in the history
  • Loading branch information
mbleigh committed Feb 3, 2015
1 parent 99d8e94 commit acf8edb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions firebase-element.html
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,11 @@ <h3>My Firebase Data</h3>
*
* @event data-change
*/

/**
* Fired when the remote location has been read, whether or not data
* has been returned.
*
*
* @event data-ready
*/

Expand Down Expand Up @@ -204,15 +204,15 @@ <h3>My Firebase Data</h3>
/**
* Specify to order by key the set of records reflected on the client.
* @attribute orderByKey
* @type Any
* @type Boolean
*/
orderByKey: null,
orderByKey: false,
/**
* Specify to order by priority the set of records reflected on the client.
* @attribute orderByPriority
* @type Any
* @type Boolean
*/
orderByPriority: null,
orderByPriority: false,
/**
* Specify to create a query which includes children which match the specified value. The argument type depends on which orderBy*() function was used in this query. Specify a value that matches the orderBy*() type.
* @attribute equalTo
Expand Down Expand Up @@ -316,7 +316,7 @@ <h3>My Firebase Data</h3>
this.valueLoading = true;
this.query.once('value', this.valueLoaded, this.errorHandler, this);
// observe server-side data
this.observeQuery();
this.job('observeQuery', this.observeQuery, 0);
},
valueLoaded: function(snapshot) {
this.valueLoading = false;
Expand Down

0 comments on commit acf8edb

Please sign in to comment.