Jared M. Smith

Results 8 issues of Jared M. Smith

[`Browser.application`](https://package.elm-lang.org/packages/elm/browser/1.0.2/Browser#application) ignores [`Html.Events.preventDefaultOn`](https://package.elm-lang.org/packages/elm/html/latest/Html-Events#preventDefaultOn) for a `click` handler within a link. Instead, it always returns a `onUrlRequest` message. `preventDefaultOn` works as expected in `Browser.element`. ### Example [SSCCE - GitHub project](https://github.com/absynce/elm-browser-application-prevent-default-sscce) Related...

Exception thrown `java.lang.NoClassDefFoundError: Could not initialize class com.intellij.lang.javascript.psi.types.JSTypeSerializer`. This happened a couple of minutes after reindex when opening Pycharm, but without any Elm files open. intellij-elm: `4.4.1` Pycharm details: ```...

I was trying to verify my error branch is working `PageLoaded (Err _)` so I intentionally used an invalid protocol: "htp". :heavy_check_mark: In Chrome it's caught in the error branch...

elm-pages CLI: 2.1.9 elm-pages: 8.0.2 I added a `Debug.todo` in `Shared` while running `elm-pages dev`. The page refreshed over and over and the console spit out this error: ``` Trace:...

**Issue** `Animator.previous` always shows the initial state instead of the previous state. **Expected** `Animator.previous` to show the previous state. **Example Ellies** - [SSCCE](https://ellie-app.com/97w2pjrkSBLa1) - [Loading example does not show previous...

## Overview Installing a local file inside of a directory fails when `run` is called. This follows the pattern in the install help guide: ![image](https://user-images.githubusercontent.com/289969/186957153-4ee0e5df-7860-4288-b375-032a0d50f76a.png) SSCCE project: https://github.com/absynce/elm-codegen-local-import-error. ## Expected...

I added behavior to return data on async getter (include) for hasMany, e.g. user.posts(c) returns Array, to be consistent with belongsTo behavior. ``` User.all({ include: 'posts' }, function (err, users)...

When using the `if` option on an async validation, the async `isValid` does not call the callback. Example User model: ``` User.validateAsync({ if : 'createdByScript', message : 'group is not...