CTA Test 5
This commit is contained in:
parent
bfcfb33620
commit
9800edebb5
@ -1058,22 +1058,11 @@ function SI_set_precision(SI_options, prefixDef, pre2num) {
|
||||
}
|
||||
|
||||
|
||||
function Load_CTA_861() {
|
||||
async function Load_CTA_861() {
|
||||
// Loads the timing definitions for the CTA-861 standard from a csv file
|
||||
fetch('CTA861.txt')
|
||||
.then(
|
||||
function(response, data) {
|
||||
if (response.status !== 200 && response.status !== 0) {
|
||||
console.log('Response code:', response.status);
|
||||
return;
|
||||
}
|
||||
CTA861 = data;
|
||||
}
|
||||
).then(
|
||||
function() {
|
||||
DEBUG(CTA861);
|
||||
}
|
||||
)
|
||||
response = await fetch('CTA861.txt');
|
||||
CTA861 = await response.text();
|
||||
DEBUG(await response.text());
|
||||
}
|
||||
|
||||
|
||||
|
@ -31,7 +31,7 @@
|
||||
<div class="wrapper">
|
||||
<div class="main">
|
||||
<div class="header">
|
||||
<a href="https://glenwing.github.io"><i class="material-icons back_arrow">subdirectory_arrow_left</i> Video Bandwidth Calculator</a>
|
||||
<a href="https://glenwing.github.io"><i class="material-icons back_arrow">subdirectory_arrow_left</i> Video Bandwidth Calculator (Test 5)</a>
|
||||
<hr />
|
||||
</div>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user