-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Accessibilty] Make kbn_accessible_click part of autoload/all #13299
[Accessibilty] Make kbn_accessible_click part of autoload/all #13299
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome! Maybe we should create an accessbility/index.js
file to import the kbn_accessible_click.js
directive?
I tested all the links in Discover, Timelion, and Dashboard and they still function with keyboard accessibility. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Thank you, reviewers! |
…c#13299) * [Accessibility] Ensure kbn-accessible-click is part of autoload/all * remove unecessary kbn_accessible_click imports * use an index.js file to expose inner directives
…c#13299) * [Accessibility] Ensure kbn-accessible-click is part of autoload/all * remove unecessary kbn_accessible_click imports * use an index.js file to expose inner directives
…c#13299) * [Accessibility] Ensure kbn-accessible-click is part of autoload/all * remove unecessary kbn_accessible_click imports * use an index.js file to expose inner directives
Plugins that use
autoload/all
weren't getting the advantage of having thekbn_accessible_click
directive. This adds that directive to be loaded, and also removes some unnecessary imports of that directive.