mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-01 21:48:28 -04:00
Tools: web-filter save use comma instead of =
This commit is contained in:
parent
50591d1adf
commit
b39642c675
@ -805,7 +805,7 @@ function save_parameters() {
|
||||
var name = "" + inputs[v].name;
|
||||
if (name.startsWith("INS_")) {
|
||||
var value = inputs[v].value;
|
||||
params += name + "=" + value + "\n";
|
||||
params += name + "," + value + "\n";
|
||||
}
|
||||
}
|
||||
var blob = new Blob([params], { type: "text/plain;charset=utf-8" });
|
||||
|
Loading…
Reference in New Issue
Block a user