-
Notifications
You must be signed in to change notification settings - Fork 87
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
Firefox not working #13
Comments
Hello, is there a workaround available for @nolimits4web please? We're using it in production and Firefox users are experiencing issues clicking on buttons. They cannot. |
I can confirm that clicking the "Get Started" button it is not working (Ubuntu 20.04, FF 97.0 (64-bit)) without giving a hint in my F12 console. besides: Unexpected value NaN parsing x2 attribute. The event on the button is: function Dr() {} Unfortunately this is a game stopper. |
Same problem for me |
I'm on Firefox 98.0.2. I don't see any error in the console but the button isn't working BUT the problem seems to be with the css, not the js. You can see it in firefox's devtools. When trying to inspect the button, the mouse isn't getting to the correct element, it's covered by another element. Setting the following css seems to fix it: .atropos > div, .atropos > span {
pointer-events: none;
}
.atropos a {
pointer-events: all;
} I didn't see any issues with the CSS change in FF, Edge, or Safari. |
As @spartanatreyu pointed out, in Firefox it seems like "there is some element above the one they're trying to interact with" This is perhaps a bug in Firefox when they calculate the targeted element, as removing Update, I just found a workaround similar to the one above, in a bit more general form: .atropos-scale {
pointer-events: none;
}
.atropos-rotate {
pointer-events: all;
} Works in current Safari, Firefox, Chrome. |
You're the best! |
Check that this is really a bug
Reproduction link
https://atroposjs.com/
Bug description
Buttons are not working on Firefox. To reproduce, please go to Atropos website in Firefox and try to click "Get Started". The button won't be responsive.
Tested on Firefox 94.0.1, Windows
Expected Behavior
The button "Get Started" should be clickable in Firefox
Actual Behavior
The button does not do anything.
Atropos version
1.0.1
Platform/Target and Browser Versions
Firefox 94.0.1, Windows
Validations
Would you like to open a PR for this bug?
The text was updated successfully, but these errors were encountered: