mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-22 07:45:29 +03:00
fix for constantly resetting focus
This commit is contained in:
parent
741961cce4
commit
036308fcdb
1 changed files with 1 additions and 2 deletions
|
@ -98,9 +98,8 @@ TABS.receiver.initialize = function (callback) {
|
||||||
// limit length to max 8
|
// limit length to max 8
|
||||||
if (val.length > 8) {
|
if (val.length > 8) {
|
||||||
val = val.substr(0, 8);
|
val = val.substr(0, 8);
|
||||||
}
|
|
||||||
|
|
||||||
$(this).val(val);
|
$(this).val(val);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$('input[name="rcmap"]').focusout(function () {
|
$('input[name="rcmap"]').focusout(function () {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue