mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-12 19:10:21 +03:00
9 lines
210 B
JavaScript
9 lines
210 B
JavaScript
function debugTraceOnLoad()
|
|
{
|
|
var output = document.getElementById('debug-trace');
|
|
setInterval(function() {
|
|
output.innerText = getDebugTrace();
|
|
}, 100);
|
|
}
|
|
|
|
window.onload = debugTraceOnLoad;
|