Ky Bishop
Ky Bishop
Still broken as of today
Color me surprised if a functional approach is more performant than set-and-forget on `init`, though v8 optimization is largely a black box to me, so who knows 🤷♂️ It's my...
I've been away from Ember for over half a year now. Someone is welcome to take up the mantel on this if they want to, but I definitely don't have...
Info a little more readable than the w3 spec :wink:: http://enable-cors.org/server.html
@sebasmagri JSON impliments [the Responder trait](https://api.rocket.rs/rocket/response/content/struct.JSON.html). Something like this should work: ```rust #[post("/endpoint/", format = "application/json", data = "")] fn post_handler, &'str>> { let wrapper = factory(report_id); match wrapper {...
An example workaround currently exists [here](https://github.com/html-next/flexi/blob/master/tests/dummy/app/templates/header-footer-with-scroll.hbs#L37). The trouble with implementing a scroll primitive is that we need a lot of prior knowledge about the AST: is there a parent with...
Currently one uses the standard templates: https://guides.emberjs.com/v2.10.0/routing/loading-and-error-substates/ Flexi does not yet support flexi layouts for the `loading` and `error` substates. This feature shouldn't be too hard to add if someone...
I'm dumb, we already have a column prefix option in the config, which can be used to avoid this issue. That said, we might want to issue a warning (in...
## From my investigations: ## This is a bug in Chrome/Safari related to `flex-direction: column`. The bug boils down to inconsistencies between how percentage-based `max-width` and `width` properties determine the...
This bug unfortunately remains. PR #99 breaks wrapping; wrapped flex children take up the entire row. Will be opening a PR to revert #99. EDIT: reverted in #108