Martin Janiczek

Results 94 issues of Martin Janiczek

Follow-up from #166. After mulling it over for a while and reading up other sources ([this](https://javascript.info/mousemove-mouseover-mouseout-mouseenter-mouseleave) was a great one) on the matter, I'd say this in [the docs](https://alpha.elm-lang.org/packages/elm/html/latest/Html-Events#onMouseEnter): ----...

Is there a reason Task requests don't accept the `tracker` field to track progress? https://package.elm-lang.org/packages/elm/http/latest/Http#task compare to https://package.elm-lang.org/packages/elm/http/latest/Http#request

I am developing a REPL-like application for the APL language. It uses UTF-8 characters and the server API requires me to specify the charset: ``` Content-Type: application/json;charset=utf-8 ``` Otherwise I...

This is probably very nitpicky, so I leave this to your consideration. The line: https://github.com/elm/package.elm-lang.org/blob/57adddf30034fdabdcdcf89f3daafa9c1e9bcf9c/src/frontend/Page/Problem.elm#L44 (to be found eg. [here](https://package.elm-lang.org/packages/wende/elchemy-core)) *sounds unnecessarily harsh to me.* I don't know whether that's...

This comment isn't in line with what the code actually does, and given code can't lie but comments can, the place to fix is probably the comment. See [findSubString](https://github.com/elm/parser/blob/master/src/Elm/Kernel/Parser.js#L123) -...

See https://github.com/Janiczek/ellies/issues/3 I want to create a [bookmarklet](https://support.mozilla.org/en-US/kb/bookmarklets-perform-common-web-page-tasks), which means an `link` that I can drag to my bookmarks tab and there click on it to perform some JS on...

![hover](https://user-images.githubusercontent.com/149425/37832209-449b139c-2ea8-11e8-8ca0-aa2b96723e1c.gif) When the page is scrolled to the top, everything works. When I scroll a bit, the absolute position of the event-emmiting area stays the same and doesn't move with...

After changing `Legends.default` to `Legends.none`, there still is a space on the right that they would occupy. My intuition was that the rest of the plot should use this newly...

enhancement

https://github.com/terezka/line-charts/blob/1.0.0/src/LineChart/Junk.elm#L386-L405 In the code example in the doc: `hovered` is `Maybe Data`, but is used like `Data` (`Point`?) Probably needs a `Maybe.map`.

I wish elm-charts allowed for using `Html.lazy` / `Svg.lazy` for particular parts of the chart, so that you could only pay the rendering work once for the actual chart and...

feature request