amieres
amieres
Right now Mono-WASM/Blazor do not support multiple threads in the `ThreadPool`. That causes calls to `Async.RunSynchronously` to hang forever. There are a couple of places in the compiler where it...
This little example throws: [] module test = type Type = Type with static member inline Member x = x member inline this.Member x = x with exception: System.ArgumentException: An...
What would be the best way to organize several pages that use Bolero. Should we have a shared _bin directory?
Next steps
I think the next step should be to make WebAssembly run in a Web Worker and keep the front end with WebSharper.UI. That would allow the integration of .Net libraries...
Running this code makes it hang upon return: JSRuntime.Current.InvokeAsync( "alert", "Hello!") |> Async.AwaitTask |> Async.RunSynchronously But this works ok: JSRuntime.Current.InvokeAsync( "alert", "Hello!") |> Async.AwaitTask |> Async.Start
Just a couple of issues: 1.- `Elt.WithAttrs` gives message: `Method name not found in JavaScript compilation: (WithAttrs : ...` 2.- `Elt.AddClass` adds an extra space that `Elt.RemoveClass` does not remove...
The following code works as long as **current** is equal to "a" or "b": ```` let snippets = ListModel.Create id [ "a" ; "b" ] let current = Var.Create "a"...
I reproduced the error in Try.WebSharper: http://try.websharper.com/snippet/user3359/0000HD The dynamic attributes (style:color and disabled in this example) are lost when they are used in a different Button. They are still active,...