Welcome to mirror list, hosted at ThFree Co, Russian Federation.

debug_trace.js « js - github.com/iNavFlight/inav-configurator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 78252a9416d12a29d907050b33c15423efe20600 (plain)
1
2
3
4
5
6
7
8
9
function debugTraceOnLoad()
{
    var output = document.getElementById('debug-trace');
    setInterval(function() {
        output.innerText = getDebugTrace();
    }, 100);
}

window.onload = debugTraceOnLoad;