From bfcfb33620bd8c92260ce8e72d97914a492c36fe Mon Sep 17 00:00:00 2001 From: Glenwing Date: Sun, 18 Mar 2018 00:54:21 -0700 Subject: [PATCH] CTA Test 4 --- bandwidth/bandwidth.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bandwidth/bandwidth.js b/bandwidth/bandwidth.js index 92b3fce..3c64cd3 100644 --- a/bandwidth/bandwidth.js +++ b/bandwidth/bandwidth.js @@ -1062,12 +1062,12 @@ function Load_CTA_861() { // Loads the timing definitions for the CTA-861 standard from a csv file fetch('CTA861.txt') .then( - function(response) { + function(response, data) { if (response.status !== 200 && response.status !== 0) { console.log('Response code:', response.status); return; } - CTA861 = response.data; + CTA861 = data; } ).then( function() {