Joseph Young

Results 9 issues of Joseph Young

Before this change, you couldn't solve constraints in values which came from constructor binders where the constructor was polymorphic: ```haskell class Con newtype Identity a = Identity a -- works...

When supplying HTML from external sources, we call `htmx.process` on them to let htmx initialise any handlers/do necessary work. However, since support for `hx-on`, it queries over the whole document...

They share the same internal counter, which means that having both on the same element will count to 2 when triggering the request, but when the request completes it first...

If you have 2+ gutters and move both to the end, and then repeatedly click and wiggle either one, the `grid-template-columns` value on the container contains huge widths. This ends...

## Description ```purescript module X (myInt, module X) where import Prelude as X myInt = 10 ``` silently only exports `myInt`, nothing from `Prelude`. I've encountered this bug while refactoring...

type: bug

At the moment, cleanup is handled by simply running the cleanup after the test sub-tree: https://github.com/purescript-spec/purescript-spec/blob/f0661f0f750205ccc7dcb78ee3d6ffc845c2e2b2/src/Test/Spec/Runner.purs#L132 This isn't great, as it doesn't get run in situations where the Aff was...

The culprit seems to be the code for the "Load more results" button crashing, causing other javascript to not be executed. A link to reproduce the issue: [https://pursuit.purescript.org/search?q=NoResults](https://pursuit.purescript.org/search?q=NoResults) The error...

htmx seems to cancel a some of its behaviours if events fire while nodes are not a part of the body: https://github.com/bigskysoftware/htmx/blob/57595bc0390b6ed98ada45a5d27156322e308757/src/htmx.js#L1514-L1517 https://github.com/bigskysoftware/htmx/blob/57595bc0390b6ed98ada45a5d27156322e308757/src/htmx.js#L1778-L1781 https://github.com/bigskysoftware/htmx/blob/57595bc0390b6ed98ada45a5d27156322e308757/src/htmx.js#L1812-L1817 This makes it difficult to integrate...

I was wondering why the docs mentioned the following under the `getNodeKey` section: > Note that form fields must not have a `name` corresponding to forms' DOM properties, e.g. `id`....