Markus Laire

Results 60 comments of Markus Laire

That syntax is not accepted by `elm-format`. If there are 2 or more empty lines between list and following indented code-block, `elm-format` will unindent the code-block and add backticks around...

Exact files used (just new project with `elm init` and direct copy from Ellie example). txt extension added as GitHub doesn't allow these otherwise. [elm.json.txt](https://github.com/elm/virtual-dom/files/3819847/elm.json.txt) [index.html.txt](https://github.com/elm/virtual-dom/files/3819848/index.html.txt) [Main.elm.txt](https://github.com/elm/virtual-dom/files/3819849/Main.elm.txt) ps. I don't...

Testing with Firefox 68.2.0esr shows that just before the for-loop `theEnd` is `undefined`. (So invalid value of `theEnd` is not limited to IE 10, it just doesn't cause problems e.g....

Or perhaps better fix would be to use the code shown at https://package.elm-lang.org/packages/elm/browser/latest/Browser-Dom#setViewport for every URL which doesn't have hash.

@clozach In my opinion this is clearly a bug, caused by incorrect implementation/architecture which tries to reuse `number` parser when it is clearly not correct in this case. Fundamental rewrite...

@clozach My use-case is parsing version string like 1.2.3 which I solved by just replacing "." with ":" before parsing. But note that using number-parser where it should not be...

> "some operations" That is not documented anywhere - Elm is notoriously awfully documented. For example integer division will only work for 32-bit values so if you try to calculate...

Your example can be shortened to JD.int |> JD.map ((*) 1000 >> Time.millisToPosix) and I think that this is clear/short enough that `Time.secondsToPosix` isn't essential to have, but would be...

That workaround completely ignores the problem of percent-encoding.

ok, it works when I added a menu. My intention is to create an app which can be minimized to system tray and then shown with global shortcut, so system...