You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.
handleRedirectUrl: function (event){
console.log('handleRedirectUrl', event);
if (event.detail.path){
this.set('route.path', event.detail.path);
}
if (event.detail.params){
this.set('route.__queryParams', event.detail.params);
}
}
However double underscores don't give confidence if this API should be accessed by me at all. Can we get some confirmation if it will be safe for us to use?
The text was updated successfully, but these errors were encountered:
This is push the new url and then dispatch the location-changed event. <iron-location> and then in turn <app-location> see that and respond - setting up the route for <app-route>. I have this function in a behaviour which gets included in many elements. It doesn't need any centralised management (<iron-location> is in effect doing that)
Note the generatURI function just encodes the params object as query parameters and appends it to path
Hello,
I'm dispatching some events in form of:
Now I'm receiving them in my top level document:
However double underscores don't give confidence if this API should be accessed by me at all. Can we get some confirmation if it will be safe for us to use?
The text was updated successfully, but these errors were encountered: