diff --git a/index.html b/index.html
index 9d75b3b..eba3a50 100644
--- a/index.html
+++ b/index.html
@@ -514,7 +514,6 @@
This art inspiration
el.addEventListener('mouseenter', () => showTooltip(dot, el));
el.addEventListener('mouseleave', hideTooltip);
} else {
- el.disabled = true;
el.setAttribute('aria-hidden', 'true');
el.tabIndex = -1;
}
@@ -832,7 +831,6 @@ This art inspiration
const el = document.getElementById('dot-' + target.id);
if (el) {
el.classList.add('dot--submitted');
- el.disabled = false;
el.removeAttribute('aria-hidden');
el.tabIndex = 0;
el.setAttribute('aria-label', `View feedback from ${target.f.n}`);
@@ -1010,7 +1008,6 @@ This art inspiration
const el = document.getElementById('dot-' + dot.id);
if (el) {
el.classList.add('dot--submitted');
- el.disabled = false;
el.removeAttribute('aria-hidden');
el.tabIndex = 0;
el.setAttribute('aria-label', `View feedback from ${dot.f.n}`);