1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-24 16:55:24 +03:00

...restoring some files

This commit is contained in:
skaman82 2015-10-23 15:42:32 +02:00
parent 6c9c64de31
commit 87e9bfd3d9
31 changed files with 1043 additions and 471 deletions

View file

@ -141,6 +141,13 @@ TABS.cli.read = function (readInfo) {
text += "<br />";
}
break;
case 60:
text += '&lt';
break;
case 62:
text += '&gt';
break;
default:
text += String.fromCharCode(data[i]);
}