Skip to content
Snippets Groups Projects
Unverified Commit 17610cba authored by R Midhun Suresh's avatar R Midhun Suresh Committed by GitHub
Browse files

Merge pull request #93 from johan-smits/main

Add aria label for the start button
parents 2780b47b 334c896b
No related branches found
No related tags found
No related merge requests found
......@@ -40,6 +40,7 @@ export function loadStartButton() {
function createStartButton() {
const button = document.createElement("button");
button.className = "start-chat-btn";
button.setAttribute('aria-label', 'Start chat');
button.onclick = () => (window as any).isIframeLoaded? toggleIframe() : loadIframe();
button.appendChild(createNotificationBadge());
return button;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment