Gerwin Sturm
Gerwin Sturm
As opposed to waiting for the `google-signin-success` event or binding to `signedIn` and observing changes, and then getting the user information as `gapi.auth2.getAuthInstance().currentUser.get().getBasicProfile()` it would be nice to have this...
A recurring problem that people seem to have is the [new attribute to property mapping in 1.0](https://www.polymer-project.org/1.0/docs/devguide/properties.html#property-name-mapping). They try something like `` because `myProperty` is listed in the element docs,...
Just curious why you decided to switch to CommonJS. ESM is the agreed upon standard for modules in browsers, and already works in most modern browsers, whereas for CommonJS some...
Building on my other PR (https://github.com/hakatashi/giiker/pull/4) this adds methods to reset the cube's internal state to "solved" (in case it got out of sync) and get the total move count.
My suggestion how to solve the ESM/CJS topic as per https://github.com/hakatashi/giiker/issues/3
Implement the new POST_AN_UPDATE and TAKE_A_NOTE actions according to https://developers.google.com/glass/contacts#declaring_voice_menu_commands and https://developers.google.com/glass/subscriptions#voice_command
I've run into an issue when using FirestoreElement in the same element that has `firebase-app`. Accessing `firebase.firestore()` in the constructor happened before `firebase-app` had a chance to initialize the app,...
One common scenario when using the Google JS Client library is to load client.js and plusone.js at the same time with this URL: https://apis.google.com/js/client:plusone.js I would suggest to have a...
`gapi.auth2` has been around for a while now and seems to be the preferred/future method for authenticating browser clients. Would be nice to upgrade this package to use it. Biggest...
There's a (rather common) use-case where you will need the hybrid flow without `approvalPrompt: force` (and also with `immediate: true`): Server-side applications that don't need (or already have) offline access,...