1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update components

This commit is contained in:
Luke Pulverenti 2016-06-22 00:39:24 -04:00
parent f64a03b3f4
commit 75a40a8dbb
17 changed files with 177 additions and 88 deletions

View file

@ -73,6 +73,13 @@ define([], function () {
return false;
}
if (elem.tagName == 'INPUT') {
var type = elem.type;
if (type == 'range') {
return false;
}
}
return true;
}
@ -272,7 +279,6 @@ define([], function () {
nearestElement = nearestElementFocusableParent;
}
}
focus(nearestElement);
}
}