Abdón Rodríguez
Abdón Rodríguez
A problem with this solution (https://github.com/vaadin/vaadin-router/issues/323#issuecomment-464368131) is that we are deleting the possible URL search params.
I just tried with this: ```javascript // Redirect to URL without trailing slash { path: '(.*)/', action: (context, commands) => { const newPath = context.pathname.slice(0, -1) + context.search; return commands.redirect(newPath);...
@aress31 you have an example here: http://github.com/IBM/pwa-lit-template/compare/navigation
@aress31 mmm it works well for me; whether I change route or enter a route directly. And about the ESLint, it depends on how you configure your rules. And about...
Yes, leaving the screen blank while the request is not resolved is not a valid option for us. 😕 In fact, right now we are making the data requests from...
With this scenario, I have two ideas in mind: 1. The `page-user` render a custom `no such user` state. We can do it right now, it's easy. 2. Some way...
Thank you @vlukashov! For now I will do that. I imagine something like `Router.render('page-not-found')` in the future. Where `page-not-found` is the name of the route.
Are there plans for this?
I am also interested in this! 🙂
@jouni in fact... https://github.com/PolymerElements/paper-toggle-button/issues/71 About the dragging, the `paper-toggle-button` also supports dragging.