Fabian Iwand

Results 95 issues of Fabian Iwand

Given an input ~~~js viewof text = Inputs.text({value: "foo", submit: true}) ~~~ if a cell assigns a new value ~~~js viewof text.value = "bar" ~~~ then the button remains disabled....

In the following example ```js Inputs.table([{foo: 1, bar: null}], { format: {bar: JSON.stringify} }) ``` the format callback is never called, making it impossible to apply custom formatting to nullish...

The `size` option for `Inputs.select()` is currently ignored if `multiple` isn't also set to `true`. This restriction seems arbitrary, since native selects allow a size > 1 for single-choice selects.

The original article is no longer available. This PR replaces it with an archive.org link.

On Chrome the actual drawn pixels are offset by the canvas offset. getX() and getY() can probably be heavily simplified. I'd recommend using getBoundingClientRect() to retrieve the top and left...

The loading bar at the top of the nav bar is supposed to indicate the loading progress of a route change, but triggers prematurely when dragging or right-clicking menu links....

In https://www.solidjs.com/tutorial/bindings_refs the canvas has the default style ~~~css canvas { background-color: #666; -webkit-mask: url(https://dev.solidjs.com/img/logo/dark-without-wordmark/logo.svg) 50% 50% no-repeat; mask: url(https://dev.solidjs.com/img/logo/dark-without-wordmark/logo.svg) 50% 50% no-repeat; } ~~~ However, the referenced SVG file...

tutorial

The demo references the following libraries which no longer exist: - https://mapzen.com/tangram/0.10/tangram.min.js - https://mapzen.com/common/ui/mapzen-ui.min.js

I was testing the resilience of my `graphql_mutation` resource by deallocating a resource externally and then running `terraform apply` again. Unfortunately the plugin crashes when one of the to-be-mapped values...

In the workspace selection we sort workspaces by role and name, but default the selection to the first unsorted value. Example: Because this selection may appear arbitrary to users, we...