CTA Test 4

Main
Glenwing 6 years ago
parent 174711af12
commit bfcfb33620

@ -1062,12 +1062,12 @@ function Load_CTA_861() {
// Loads the timing definitions for the CTA-861 standard from a csv file // Loads the timing definitions for the CTA-861 standard from a csv file
fetch('CTA861.txt') fetch('CTA861.txt')
.then( .then(
function(response) { function(response, data) {
if (response.status !== 200 && response.status !== 0) { if (response.status !== 200 && response.status !== 0) {
console.log('Response code:', response.status); console.log('Response code:', response.status);
return; return;
} }
CTA861 = response.data; CTA861 = data;
} }
).then( ).then(
function() { function() {

Loading…
Cancel
Save