Skip to content
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

Installation cleanup #35168

Merged
merged 11 commits into from
Aug 17, 2021
Prev Previous commit
Next Next commit
Update installation/template/js/remove.js
Co-authored-by: Brian Teeman <[email protected]>
  • Loading branch information
wilsonge and brianteeman authored Aug 17, 2021
commit 9ba1c058c3918e2e12a1abd0bd0ccd836dda4445
2 changes: 1 addition & 1 deletion installation/template/js/remove.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const completeInstallationOptions = document.querySelectorAll('.complete-install

completeInstallationOptions.forEach(function(item) {
item.addEventListener('click', function (e) {
// Evil voodoo. Once a button is clicked ensure they don't spam click it...
// Once a button is clicked ensure they can't click it again...
completeInstallationOptions.forEach(function(nestedItem) {
nestedItem.disabled = true;
});
Expand Down