Merge pull request #2342 from iced-rs/default-wasm-canvas-target
Target `#iced` container by default on Wasm
This commit is contained in:
commit
af6bc4643d
2 changed files with 12 additions and 2 deletions
|
|
@ -158,4 +158,4 @@ web-time = "0.2"
|
||||||
wgpu = "0.19"
|
wgpu = "0.19"
|
||||||
winapi = "0.3"
|
winapi = "0.3"
|
||||||
window_clipboard = "0.4.1"
|
window_clipboard = "0.4.1"
|
||||||
winit = { git = "https://github.com/iced-rs/winit.git", rev = "b91e39ece2c0d378c3b80da7f3ab50e17bb798a5" }
|
winit = { git = "https://github.com/iced-rs/winit.git", rev = "592bd152f6d5786fae7d918532d7db752c0d164f" }
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,21 @@
|
||||||
//! Platform specific settings for WebAssembly.
|
//! Platform specific settings for WebAssembly.
|
||||||
|
|
||||||
/// The platform specific window settings of an application.
|
/// The platform specific window settings of an application.
|
||||||
#[derive(Debug, Clone, PartialEq, Eq, Default)]
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||||
pub struct PlatformSpecific {
|
pub struct PlatformSpecific {
|
||||||
/// The identifier of a DOM element that will be replaced with the
|
/// The identifier of a DOM element that will be replaced with the
|
||||||
/// application.
|
/// application.
|
||||||
///
|
///
|
||||||
/// If set to `None`, the application will be appended to the HTML body.
|
/// If set to `None`, the application will be appended to the HTML body.
|
||||||
|
///
|
||||||
|
/// By default, it is set to `"iced"`.
|
||||||
pub target: Option<String>,
|
pub target: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl Default for PlatformSpecific {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self {
|
||||||
|
target: Some(String::from("iced")),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue