Kevin Jantzer

Results 11 comments of Kevin Jantzer

:+1: Had this issue too. Changed the regex on line 51 from: `\\w+` to `[\\w\\.\\-]*` to solve the problem. Thanks @bigfetz

For those using `docker-compose`, add `platform: linux/amd64` to your service definition

This doesn't solve your problem, but I had the same issue. Backbone relational started off as a nice feature that sped up development, but quickly became a bog on performance....

Reading through the source code, I found that the window property can be set using the `configure` method. Try this: ``` page.configure({window:window}) ``` > (not sure why this would be...

:+1: That naming is awful based on what it actually does.

@ronnyroeller Try this fork https://github.com/web-padawan/quill/tree/shadow I've been using it with lit-element and shadow dom for a few months now

@cloverich You beat me to it! Was just about to post this issue.

Interesting... I'll be honest, I dont really ever test in Safari. Most development testing is targeted to Chrome/Edge (blink) Seems like it's a weird css issue. Maybe could be more...

Oh, looks like it might stem from animating font-size and translate at the same time, since `translateY(50%)` is relative to the element size https://stackoverflow.com/a/44210637/484780

That's an interesting idea. `b-grid` was originally introduced to reduce the work for common "basic" layouts with the thought that more complex "one-off" layouts would be coded in the custom...