mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix people refresh progress display
This commit is contained in:
parent
e9c39a66c8
commit
4b69fc0034
4 changed files with 12 additions and 12 deletions
|
@ -14,12 +14,12 @@
|
|||
},
|
||||
"devDependencies": {},
|
||||
"ignore": [],
|
||||
"version": "1.4.161",
|
||||
"_release": "1.4.161",
|
||||
"version": "1.4.162",
|
||||
"_release": "1.4.162",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "1.4.161",
|
||||
"commit": "da357c3660e6956a59327fdd9d90506d16dc4b5c"
|
||||
"tag": "1.4.162",
|
||||
"commit": "04e8903ff6b76ca7f1eaa4e1967f9dab0c9deca7"
|
||||
},
|
||||
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
||||
"_target": "^1.2.1",
|
||||
|
|
|
@ -32,7 +32,7 @@ define(['dom'], function (dom) {
|
|||
}
|
||||
}
|
||||
|
||||
var focusableTagNames = ['INPUT', 'TEXTAREA', 'SELECT', 'BUTTON', 'A', 'PAPER-CHECKBOX'];
|
||||
var focusableTagNames = ['INPUT', 'TEXTAREA', 'SELECT', 'BUTTON', 'A'];
|
||||
var focusableContainerTagNames = ['BODY', 'DIALOG'];
|
||||
var focusableQuery = focusableTagNames.join(',') + ',.focusable';
|
||||
|
||||
|
@ -89,7 +89,7 @@ define(['dom'], function (dom) {
|
|||
}
|
||||
|
||||
function getFocusableElements(parent) {
|
||||
var elems = (parent || document).querySelectorAll(focusableQuery);
|
||||
var elems = (parent || document.body).querySelectorAll(focusableQuery);
|
||||
var focusableElements = [];
|
||||
|
||||
for (var i = 0, length = elems.length; i < length; i++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue