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

update user pages

This commit is contained in:
Luke Pulverenti 2016-04-09 15:04:14 -04:00
parent 1e4a9af13a
commit ef7cd8f80c
11 changed files with 107 additions and 119 deletions

View file

@ -457,6 +457,12 @@ define([], function () {
return result;
}
function sendText(text) {
var elem = document.activeElement;
elem.value = text;
}
return {
autoFocus: autoFocus,
focus: focus,
@ -473,6 +479,7 @@ define([], function () {
},
moveDown: function (sourceElement) {
nav(sourceElement, 3);
}
},
sendText: sendText
};
});