-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 2.0.x, master, master-deprecated
-
Fix Version/s: 2.0.x, master, master-deprecated, 3.0.x, 2.0.0.54-deprecated
-
Component/s: Widget
-
Labels:
-
Git Pull Request:
We stop tabbing to focus on iframes on page.
This logic is reflected by the code in
src/widget-modality/js/Widget-Modality.js
/** * Blocks iframes on the page from getting focused by setting their * tabIndex attribute to -1. The previous value of tabIndex is saved * so it can be restored later. * * @method _blockIFrameFocus * @protected */ _blockIFrameFocus: function() { Y.all('iframe').each(function() { this.setAttribute('data-tabindex', this.get('tabIndex')); this.set('tabIndex', -1); }); },
However, we should not stop focusing on iframes inside the modal. We only need to stop focusing on iframes OUTSIDE modal.
- relates
-
LPS-55692 Tab key navigate to all clickable elements in Message Boards's select category page
- Closed