1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-14 20:10:11 +03:00

whops, fixing trailing commas

This commit is contained in:
cTn 2014-11-15 01:18:04 +01:00
parent 66ab7d1093
commit 366cd018b2
3 changed files with 4 additions and 4 deletions

View file

@ -57,7 +57,7 @@ var RC_tuning = {
yaw_rate: 0, yaw_rate: 0,
dynamic_THR_PID: 0, dynamic_THR_PID: 0,
throttle_MID: 0, throttle_MID: 0,
throttle_EXPO: 0, throttle_EXPO: 0
}; };
var AUX_CONFIG = []; var AUX_CONFIG = [];

View file

@ -155,7 +155,7 @@ TABS.motors.initialize = function (callback) {
var raw_data_text_ements = { var raw_data_text_ements = {
x: [], x: [],
y: [], y: [],
z: [], z: []
}; };
$('.plot_control .x, .plot_control .y, .plot_control .z').each(function () { $('.plot_control .x, .plot_control .y, .plot_control .z').each(function () {
@ -211,7 +211,7 @@ TABS.motors.initialize = function (callback) {
var accel_with_offset = [ var accel_with_offset = [
accel_offset[0] + SENSOR_DATA.accelerometer[0], accel_offset[0] + SENSOR_DATA.accelerometer[0],
accel_offset[1] + SENSOR_DATA.accelerometer[1], accel_offset[1] + SENSOR_DATA.accelerometer[1],
accel_offset[2] + SENSOR_DATA.accelerometer[2], accel_offset[2] + SENSOR_DATA.accelerometer[2]
]; ];
updateGraphHelperSize(accelHelpers); updateGraphHelperSize(accelHelpers);

View file

@ -260,7 +260,7 @@ TABS.sensors.initialize = function (callback) {
var raw_data_text_ements = { var raw_data_text_ements = {
x: [], x: [],
y: [], y: [],
z: [], z: []
}; };
$('.plot_control .x, .plot_control .y, .plot_control .z').each(function () { $('.plot_control .x, .plot_control .y, .plot_control .z').each(function () {
var el = $(this); var el = $(this);