OvermindDL1
OvermindDL1
Actually that would be simple it seems, I looked through the code path of where the path is sent through and that looks to be easily replaceable with an `FnOnce`,...
I'm also having issues with inputs being missed due to the state-based nature of the inputs not being accurate enough. We need some way to receive events, we really need...
Wouldn't this be an Elm bug as `elm-mdl` has no javascript?
And for note, https://github.com/google/material-design-lite/issues/1625#issuecomment-181332667 says they are doing away with the native rendering and doing it themselves for v2, we could jump on that now.
I think since Google's `mdl` itself is basically dead (replaced by Google's `mdc`) that [`elm-mdc`](https://github.com/aforemny/elm-mdc) is where new work is being done.
Excepting my ProgramEx that can register everything at once without issue or forgetting possible things like subscription, can you think of a way to throw some kind of error if...
I was trying to figure out the same thing, the lack of metaprogramming/macros in Elm is exceedingly limiting... Although HKT's are far more important, it really needs those.
As for web components, most of google's follow Polymer's style (even if they do not use Polymer), that is that properties are set as properties (doable as-is in elm), attributes...
My programmerize would prefer the method where I can specify the type. However it might be better to just pick String as the type for `List String` everywhere, it is...
What I do currently, for comparison, is pass a 'pidx' (previous index) and just add on another index, and any time I have a view that goes deeper then I...