Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,6 @@ <h3 class="h3">This art inspiration</h3>
el.addEventListener('mouseenter', () => showTooltip(dot, el));
el.addEventListener('mouseleave', hideTooltip);
} else {
el.disabled = true;
el.setAttribute('aria-hidden', 'true');
el.tabIndex = -1;
}
Expand Down Expand Up @@ -832,7 +831,6 @@ <h3 class="h3">This art inspiration</h3>
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}`);
Expand Down Expand Up @@ -1010,7 +1008,6 @@ <h3 class="h3">This art inspiration</h3>
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}`);
Expand Down