András Sevcsik-Zajácz
András Sevcsik-Zajácz
Thanks for the tip, it's definitely useful! 👍 On Sun, 20 Dec 2015 06:33 Ingwie Phoenix [email protected] wrote: > You can use napa to add it to your project. >...
Looks like the problem is that for the first `_onTabChanged` call, [here](https://github.com/PolymerElements/paper-tabs/blob/master/paper-tabs.html#L407), we get a 0x0 rectangle: ``` js var r = this.$.tabsContent.getBoundingClientRect(); ``` which results in a division by...
I fixed this in PR https://github.com/PolymerElements/paper-tabs/pull/32 but I'm yet to add tests. I suspect that the same issue is causing what @seahrh reported. @seahrh, can you check it with my...
I just ran into this issue, with a bit of a twist, because the config object was also mapped from environment variables. It's a tough nut to crack, because the...
I came up with something similar (albeit much less deatiled): https://gist.github.com/sevcsik/18768b66b07eacbea522 The main differences are: - There is no dedicated master device - The master ID is always used by...
Altough having a master device would solve a lot of issues, I wouldn't make it mandatory to have multiple devices synchronized. That would make it quite hard (probably not even...
Ah, so you mean "master client" as a way to revoke access to lost devices? That's ok, I thought you're talking about a way to synchronize clients. On Thu, Mar...