Martin Kavík
Martin Kavík
Hi @runfalk, Rust Js communication is possible (for instance, all Rust frameworks have to talk with the Js world to call browser APIs). There is also a WIP tutorial that...
@seanybaggins Bootstrap uses jQuery.. so it modifies DOM a lot (if nothing changed recently). There are some efforts to create a "native Bootstrap" (i.e. Bootstrap with JS without jQuery) or...
@seanybaggins I haven't tried to integrate Seed into an Electron app, but I was able to write an Electron app with Elm and Typescript several years ago. So if I'm...
> If I, or someone else, do something with this, would you be interested in a PR for the official documentation? Yes, PRs with examples or docs are very welcome.
When you write `attrs!{ At::Target => "_blank" }`, then you hope the link will be opened in a new tab. However Seed doesn't ignores it (if the link has a...
> But why can't it open a new tab? Seed intercepts all relative links by default to prevent the app reloading. The intercepted link click doesn't propagate to the browser's...
I would just handle the most common cases - it means `Ctrl key + click` and `target="_blank"`. We can add special handling for other cases when somebody needs it -...
UPDATE: It seems that `wasm-pack` doesn't support `fn main` yet and it's still not recommended to use `wasm-bindgen` directly because you would have to manage `wasm-bindgen` and `wasm-bindgen-cli` installations to...
I would like to resolve event API design first: https://github.com/seed-rs/seed/issues/331 (we can integrate `passive` behavior/switch into it somehow). And then we can focus on implementation details, i.e. rewriting into gloo_events....
> dominator is a rust web framework without VDOM like svelte Yeah, they are on that list already. @pickfire What's the motivation for the question? Do you haven any problems...