browser
browser copied to clipboard
Create Elm programs that run in browsers!
Just fix typo.
The docs for `Browser.Navigation.load` say > Leave the current page and load the given URL. **This always results in a page load**, even if the provided URL is the same...
When using Browser.application. If you have an `a` which doesn't have an `href`, Elm will generate a navigation event. Reproduction here: https://github.com/sporto/repro-elm-application-a-tag/blob/master/src/Main.elm This seems like a bug, `a` tag is...
Thanks for all the work that you guys do. I think the Browser.Events.on -function should be exposed. With the Html.Events.on function we can listen for custom js-events on elements in...
This PR adds the class `__elm__internal__debugger__` to the widget that lives to the bottom-right of the screen and is used to open the debugger. This is useful for possible overrides...
I've been struggling with using preventDefault to stop an `a` tag with `href` from navigating to that page. I would like to stop it and do a `Browser.Navigation.replaceUrl` instead in...
**The issue** I am building an editor using Elm, so I am handling all sorts of keyboard input. I just learned that the subscriptions in `Browser.Events` unfortunately don't provide the...
The following app will throw a stack overflow exception on start up when the debugger is enabled. This occurs in both `elm/browser` 1.0.1 and 1.0.2 ```elm module Main exposing (main)...
**What's the bug?** The debugger seems to compare the old and new model whenever a new msg is triggered. When the model contains a large list it can throw a...
This fixes issue #90. I have tested it on the example given in that issue.