You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 12, 2023. It is now read-only.
If a user deletes input in one of the required fields, the next button is not greyed out.
I've fixed it in a branch on specify general information (I'll fix the other tabs and submit a PR when the profile-branch is ready). Or I can submit this individually if the other takes too long or isn't accepted.
I've solved it by instead of removing the button when exposing next, I add the class hideMe on the faux button. And of course add the class hideMe from next and remove hideMe from faux if required metadata is deleted.
if (expose){
$("#faux").addClass("hideMe");
$(".jw-button-next").removeClass("hideMe");
} else {
$("#faux").removeClass("hideMe");
$(".jw-button-next").addClass("hideMe");
}
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
If a user deletes input in one of the required fields, the next button is not greyed out.
I've fixed it in a branch on specify general information (I'll fix the other tabs and submit a PR when the profile-branch is ready). Or I can submit this individually if the other takes too long or isn't accepted.
I've solved it by instead of removing the button when exposing next, I add the class hideMe on the faux button. And of course add the class hideMe from next and remove hideMe from faux if required metadata is deleted.
The text was updated successfully, but these errors were encountered: