Michael Bleigh
Michael Bleigh
@cdata do you think this could be solved just by making `__onFirebaseChildAdded` called with a `requestAnimationFrame` or `setTimeout(..., 0)`?
I think `child_added` events may be called synchronously when a big chunk of data arrives over the wire all at once. Would need to confirm with Firebase DB team.
The Firebase SDK definitely caches locally in-memory, so an on('value') will start a listener and you can separately do on('child_added'). This will not incur double network cost. On Fri, May...
If you do snapshot.forEach they will be emitted in query order. On Fri, May 5, 2017 at 1:08 PM Toni-Jan Keith Monserrat < [email protected]> wrote: > Anyway, I left a...
It's a Realtime Database, this is working as intended. There are a number of ways you could achieve the effect you're looking for, such as copying the value to a...
Can you also add a breaking test case that is fixed by your PR?
Starting some thinking about how we could do this "for real" in a more built-in way. #112 offers online-only methods that work directly with the Firebase SDK, but I don't...
I can help address this. On Sat, Nov 5, 2016, 6:27 PM Toni-Jan Keith Monserrat < [email protected]> wrote: > But the ordering of import also matters... Like when i loaded...
@motss is `signInWithRedirect` working if you just use the vanilla Firebase SDK without PolymerFire?
I (think?) this is expected behavior for a `dom-repeat`with a filter, at least I've run into this both with Firebase and non-Firebase apps. @cdata @robdodson is it expected that the...