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.
1 parent 552a5d7 commit fb7c7b8Copy full SHA for fb7c7b8
src/index.ts
@@ -101,12 +101,16 @@ export class KeyboardNavigation {
101
this.workspace
102
.getParentSvg()
103
.setAttribute('tabindex', this.workspaceParentTabIndex);
104
+ } else {
105
+ this.workspace.getParentSvg().removeAttribute('tabindex');
106
}
107
108
if (this.injectionDivTabIndex) {
109
110
.getInjectionDiv()
111
.setAttribute('tabindex', this.injectionDivTabIndex);
112
113
+ this.workspace.getInjectionDiv().removeAttribute('tabindex');
114
115
116
this.cursor.uninstall();
0 commit comments