firebase-element
firebase-element copied to clipboard
Web components for the Firebase Web API
Navigating to the `firebase-auth` demo page and choosing the provider type "Google" results in a Unauthorized Request Origin error page from Firebase. Reproduction steps: 1. Navigate to [firebase-auth demo page](https://elements.polymer-project.org/elements/firebase-element?view=demo:demo/index.html&active=firebase-auth)...
Example: works but: does not, as there is a _ underscore in the firebase key - this generates a "Wrong Url" error.
this.setUser does not exist. It appears that the element property user is to be set to the current authData when successful login completes and null on logout. I have added...
I'm building a single page application that has two tabs. A `firebase-document` to a particular location is called by an element on the first tab. The second tab is lazily...
https://github.com/GoogleWebComponents/firebase-element/blob/master/firebase-document.html#L85 this line calls set on entire document instead of subproperty that changed. this causes the change record's path to be "object" instead of "object.subprop". my app has things that...
https://github.com/GoogleWebComponents/firebase-element/blob/master/firebase-collection.html#L612 this line calls set on the entire object that changed. not the subproperty of the object that changed. so my dom-repeat sort function runs on the client that made...
From: https://github.com/PolymerElements/iron-list/issues/131 Steps to reproduce the issue: 1) create an iron-list binded to a firebase collection element 2) select an item 3) update the item in firebase 4) the selected...
firebase-auth Trigger an event on _locationChanged > _authHandler when there is no login or logout.
Right now, locally, I have touched the firebase-auth.html on line 178 adding an else to the list. ``` if (this._queuedLogin) { this.login(this._queuedLogin.params, this._queuedLogin.options); this._queuedLogin = null; } else if (!this.statusKnown...
If I'm not mistaken there is no way to update item. Just to add or remove.
This is mentioned in issue #31, but it looks like that issue has gone cold and the title is a little misleading, so I'm opening this issue for the following...