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

Commit af8d37a

Browse files
committed
Merge pull request #40 from mbleigh/list-fixes
Bugfixes from firebase-list
2 parents 99d8e94 + acf8edb commit af8d37a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

firebase-element.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,11 @@ <h3>My Firebase Data</h3>
136136
*
137137
* @event data-change
138138
*/
139-
139+
140140
/**
141141
* Fired when the remote location has been read, whether or not data
142142
* has been returned.
143-
*
143+
*
144144
* @event data-ready
145145
*/
146146

@@ -204,15 +204,15 @@ <h3>My Firebase Data</h3>
204204
/**
205205
* Specify to order by key the set of records reflected on the client.
206206
* @attribute orderByKey
207-
* @type Any
207+
* @type Boolean
208208
*/
209-
orderByKey: null,
209+
orderByKey: false,
210210
/**
211211
* Specify to order by priority the set of records reflected on the client.
212212
* @attribute orderByPriority
213-
* @type Any
213+
* @type Boolean
214214
*/
215-
orderByPriority: null,
215+
orderByPriority: false,
216216
/**
217217
* 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.
218218
* @attribute equalTo
@@ -316,7 +316,7 @@ <h3>My Firebase Data</h3>
316316
this.valueLoading = true;
317317
this.query.once('value', this.valueLoaded, this.errorHandler, this);
318318
// observe server-side data
319-
this.observeQuery();
319+
this.job('observeQuery', this.observeQuery, 0);
320320
},
321321
valueLoaded: function(snapshot) {
322322
this.valueLoading = false;

0 commit comments

Comments
 (0)