-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
web-sys 0.70 issue #4958
Comments
Please fill out the description - this doesn't help |
sorry! i try this. raise error trunk build error[E0308]: mismatched types |
This PR updates web-sys & wasm to the newest version. (this was already part of the POC emilk#4954 ) * Closes <emilk#4961> * Closes <emilk#4958> * [x] I have followed the instructions in the PR template
This PR updates web-sys & wasm to the newest version. (this was already part of the POC emilk#4954 ) * Closes <emilk#4961> * Closes <emilk#4958> * [x] I have followed the instructions in the PR template
Describe the bug
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Screenshots
Desktop (please complete the following information):
Smartphone (please complete the following information):
Additional context
fn set_clipboard_text(s: &str) {
if let Some(window) = web_sys::window() {
if let Some(clipboard) = window.navigator().clipboard() {
changed function return type:
window.navigator().clipboard() -> Clipboard
The text was updated successfully, but these errors were encountered: