Erik Ringsmuth
Erik Ringsmuth
Yeah, I see the problem too. It might be something with the timing in the webcomponentsjs polyfill. I'll have to try to figure out how to debug iOS devices.
This is weird! I can see all the elements in the dom throughout the screen when I inspect elements but nothing renders. This might be a Safari bug.
I take it you were working off of this example? https://erikringsmuth.github.io/app-router/#/events#polymer-event-mapping The URL should really be the only conditional when routing. Otherwise you break REST. You could maybe put conditional...
It's actually a really good idea. I've thought about that before too. I was thinking about completely splitting it into it's own element. URL ``` /this/is/a/really/long/url?and=just&keep=going ``` Then put something...
Having attribute changes automatically reflect back to the URL is useful but it gets tricky. The [flatiron-director](https://github.com/PolymerLabs/flatiron-director) element supports this in a very rudamentary way with it's `autoHash` attribute. These...
I have a number of reservations on this. In general, auto updating the URL scares me. It could be done, but I'm going to be very critical about any code...
Two-way binding is convenient but I think new frameworks will be moving away from two-way binding by default. The flux architecture in React doesn't do it at all. You use...
It has to make assumptions about creating a new instance vs. updating the model. This would affect whether the custom element lifecycle callbacks are called like `detached()` and `domReady()`. It...
Every time I debug `core-animated-pages` I'm left confused. I couldn't tell you why some things work and others don't. I'm also curious what they'll do in 0.9 and 1.0 since...
Not sure about this one. Anyone else seen this?