Alan Chandler

Results 54 comments of Alan Chandler

@ergo A safe way to change path is to do the following ``` switchPath: function(path, params) { window.history.pushState({}, null, this.generateUri(path,params)); window.dispatchEvent(new CustomEvent('location-changed')); }, ``` This is push the new url...

As referenced above I raised this in issue #123. The real problem is not, to my mind related to trailing slashes or not, it is that fact that stale data...

I was wrong about the root cause of this issue. The real culprit is iron location which has a method:- ``` _urlChanged: function() { // We want to extract all...

Sadly I have come to the conclusion that its a design issue that isn't going to go away. I have ended up making my own pair of elements `` and...

@ansarizafar I have an app which requires authentication before the user can proceed. I handle that case at the top level by having an app element which contains a session...

@ansarizafar A bit difficult because its a private project for a customer, but I can give you a flavor by giving you parts of my-app, my-session and my-pages elements. I...

@ansarizafar I am not using custom events because I don't need to. The approach is just the standard "Mediator Pattern" that was spoken about at the 2015 Polymer Summit. That...

I've been playing with putting some tags on a page and using databinding. The trouble is, you can put data in using databinding, but you can't get it out again....

Having found that iron-meta did not appear to work with data binding, I have built my own version (akc-meta) that seems to work well with data binding. This keeps a...

I've just hit this same bug. I have been using json for everything and I now have a use case which requires xml. Why has it taken 18 months not...