Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
87328163
Commit
87328163
authored
Apr 30, 2016
by
dogmaphobic
Browse files
Remove debug output
parent
275ea54a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/AutoPilotPlugins/Common/ESP8266Component.qml
View file @
87328163
...
...
@@ -71,12 +71,10 @@ QGCView {
url
=
url
+
"
?r=1
"
stResetCounters
=
false
}
console
.
log
(
url
)
req
.
open
(
"
GET
"
,
url
);
req
.
onreadystatechange
=
function
()
{
stStatus
=
req
.
readyState
;
if
(
stStatus
===
XMLHttpRequest
.
DONE
)
{
console
.
log
(
req
.
responseText
)
var
objectArray
=
JSON
.
parse
(
req
.
responseText
);
if
(
objectArray
.
errors
!==
undefined
)
{
console
.
log
(
qsTr
(
"
Error fetching WiFi Bridge Status: %1
"
).
arg
(
objectArray
.
errors
[
0
].
message
))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment