You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example scrollable element
<div class="list">
<ul>
<li tabindex="-888">
<a>Some text
</li>
</ul>
</div>
In this case it`s does not scrolling, with keyboard, becouse сondition are not met:
this.elementKeydown = function (event) {
if (document.activeElement === _this.$element[0])
The text was updated successfully, but these errors were encountered:
For example scrollable element
<div class="list">
<ul>
<li tabindex="-888">
<a>Some text
</li>
</ul>
</div>
In this case it`s does not scrolling, with keyboard, becouse сondition are not met:
this.elementKeydown = function (event) {
if (document.activeElement === _this.$element[0])
The text was updated successfully, but these errors were encountered: