Erik Ringsmuth

Results 62 comments of Erik Ringsmuth

I'm all for this. HTML import seem like it's dead since Chrome is the only browser that supports it natively. I'd be happy seeing this converted to `System.import`, ES6 modules,...

Maybe this? ``` html ``` This might be more of a Polymer template syntax question...

You can set up the layout however you want. The app-router-examples [sidebar-layout](https://github.com/erikringsmuth/app-router-examples/blob/master/hash-routing/layouts/sidebar-layout.html#L46) use Polymer's [layout elements](http://www.polymer-project.org/docs/elements/layout-elements.html). You can set it up to use any layout you want. As for the...

This is a tricky one that I've tried to come up with a solution to before. Here's a partial workaround. ``` html ``` This could be written like this with...

Polymer actually has an entire library dedicated to data binding called Node.bind() https://www.polymer-project.org/docs/polymer/node_bind.html. In reality the router doesn't do proper data binding. All it does is parse the URL and...

Yeah, right now there are no external dependencies. I've considered the possibility of making a Polymer specific router but I really don't want to maintain two forks. With `Node.bind()` there's...

I'm adding this feature as a follow up to another PR https://github.com/erikringsmuth/app-router/issues/45. I'm hoping to get it released in v2.1.0 this weekend. It'd be a partial workaround for this issue....

2.1.0 is up. Take a look at the `before-data-binding` event. This might get you close enough. https://erikringsmuth.github.io/app-router/#/events#before-data-binding

Sorry, I'm really not sure what you're asking here.