We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 464f60e + f12849f commit 834a421Copy full SHA for 834a421
src/typed.js
@@ -425,6 +425,7 @@ export default class Typed {
425
if (this.cursor) return;
426
this.cursor = document.createElement('span');
427
this.cursor.className = 'typed-cursor';
428
+ this.cursor.setAttribute('aria-hidden', true);
429
this.cursor.innerHTML = this.cursorChar;
430
this.el.parentNode &&
431
this.el.parentNode.insertBefore(this.cursor, this.el.nextSibling);
0 commit comments