Vivien S
Vivien S
It seems like that after revoking an access-token via API or Account-Settings the AuthEngine does not register all tokens as revoked and does not request them again. Steps to reproduce...
It would be really nice if there would be a property so I could set fetch_basic_profile to false as documented in https://developers.google.com/identity/sign-in/web/people . I do not want to irritate my...
I am trying to set the scopes by checkboxes, so my code looks like this : ``` html Sync contacts Sync calendar ``` ``` javascript _getScopes: function(syncContacts,syncCalendar) { var s...
Fixed a typo in a method name, added a semicolon, added content-tag so this.children actually finds children.
Added property fitMapToBounds to get the map automatically resized to fit the bounds of the LayerGroup where this is set to true (so enables functionality like fitToMarkers, but for only...
Providing an easy way to pass an options-object for initialising the GeoJson-element.
Not sure why Polymer.dom(this).innerHTML is empty while this.innerHTML is not - maybe this is a polymer issue, maybe I am doing something wrong setting the innerHTML. This (popup content not...
Adds support for http://leafletjs.com/reference.html#rectangle I decided to put northEast and southWest as attributes instead of leaflet-points or implementing LatLngBounds like they are in leaflet. Not sure if you agree with...
Adds support for http://leafletjs.com/reference.html#rectangle Adds observers to the path options calling the new _updateStyle-method. If a feature is already defined, it's setStyle-method will be called with the updated options. This...
### Steps to reproduce I've got the following data model: ```c# public record DbSiteOpeningHours { public string SomeString{ get; init; } = null!; public OpeningHours[] OpeningHours { get; set; }...