lucamug
lucamug
We experienced a case where the height returned by Browser.Events.onResize was 0 instead of the actual height. The method to get width and height described in https://stackoverflow.com/questions/1248081/get-the-browser-viewport-dimensions-with-javascript seems giving more...
Add several companies and several links to posts, talks, and videos.
I have seen beginners struggling in understanding how to import a package, especially because there is no enforced consistency in naming. For example ``` elm/html -> import Html evancz/elm-playground ->...
I am trying to implement a form with Floating Labels and I need a way to detect when the label need to move from inside the input field to above...
``` #!/usr/bin/ruby # Modify Platform.js as per https://github.com/utkarshkukreti/elm-remotedev file_name = "elm-stuff/packages/elm-lang/core/5.1.1/src/Native/Platform.js"; str = File.read(file_name); re = /(model = results\._0;\n\t\t\t)(updateView\(model\);)/ subst = "\\1typeof ElmRemoteDev !== \'undefined\' && ElmRemoteDev.send(msg, model);\n\t\t\t\\2" result =...
The README mention that the option "As selection of functions" results in optimal building size. Am I wrong or the Elm dead code elimination is actually removing all unused functions...
I needed to change the scaleX and scaleY independently and it was not trivial to understand that is possible to create helpers like. I think either adding this as example...
I am not that familiar with the library but I wonder if there could be some way to differentiate these functions. `Animator.xy` ``` xy : Timeline state -> ( state...
In one of the first example that I wrote I was using `Animator.watching` instead of `Animator.Css.watching`. From @mdgriffith Oh! you need to use Animator.Css.watching for css. Yeah, unfortunately that’s a...
More a comment than an issue. I wanted to remove the "tag" and "args" from inside the JSON output. So I changed a couple of functions and now instead of...