W. Brian Gourlie
W. Brian Gourlie
FileList API
I noticed that the `files` property of `InputElement` was removed some time ago. Are there any thoughts on how this should be reimplemented? In the meantime, are there any quick...
I'm looking for feedback on the approach to subclassing input elements. This PR adds a custom `instanceof` implementation for input elements, and implements `FileInputElement`. Fixes #226.
Windows 10 build 1809 (64-bit) Intel Iris Plus Graphics 640 `cargo run --example triangle --features dx12` fails with the following stacktrace: ``` WARN 2019-04-05T01:35:04Z: rendy_factory::factory: Slow safety checks are enabled!...
### Proposed changes **Add `onOpen` and `onClose` subscriptions** This would fix #14 and #10 and was my primary motivation for proposing these changes. These subscriptions are important for pretty much...
**Elm Version:** 0.18 **OS**: Mac OS X **Browser**: Chrome **SSCCE**: Because this is a bug internal to the websocket library, it can't be illustrated in an isolated example. Here are...
Fixes #17
I believe this would solve [#10](https://github.com/elm-lang/websocket/issues/10) There are a number of reasons we would want to know when a connection is established or closed: - Provide connection indicator in the...
In scenarios where `useShadowDom` is set to false, there's no reliable way to know when a component's template has been loaded into the DOM, and therefore no reliable way to...
There's no way (that I know of) to use the http service to retrieve binary data. Typically, this is accomplished by setting the `responseType` property on `dom.HttpRequest` to "arraybuffer". The...
Per [HttpRequest docs](https://api.dartlang.org/apidocs/channels/stable/dartdoc-viewer/dart-dom-html.HttpRequest#id_request): > If specified, sendData will send data in the form of a ByteBuffer, Blob, Document, String, or FormData along with the HttpRequest. The http service only accounts...