1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-18 22:05:17 +03:00

moving CLI vars around

This commit is contained in:
cTn 2014-06-20 10:29:01 +02:00
parent 5618d46063
commit f649418fdf
2 changed files with 3 additions and 2 deletions

View file

@ -1,6 +1,4 @@
var configuration_received = false; var configuration_received = false;
var CLI_active = false;
var CLI_valid = false;
$(document).ready(function() { $(document).ready(function() {
$('div#port-picker a.connect').click(function() { $('div#port-picker a.connect').click(function() {

View file

@ -1,3 +1,6 @@
var CLI_active = false;
var CLI_valid = false;
var CliHistory = function () { var CliHistory = function () {
this.history = []; this.history = [];
this.index = 0; this.index = 0;