Skip to content

Commit

Permalink
Updated status page.
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferStrube committed Oct 30, 2023
1 parent 421e569 commit ef28405
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<PageTitle>WebAudio - Status</PageTitle>

<div style="height:10vw;border-radius:20px;margin-bottom:20px;display:flex;align-content:center;justify-content:center;font-size:5vw;line-height:2;font-weight:900;font-family:consolas;background-color:@color">
@($"{percentImplemented:00.00%}") Covered!
@($"{percentImplemented:00%}") Covered!
</div>

<pre><code>@((MarkupString)compareText)</code></pre>
Expand All @@ -28,13 +28,13 @@

compareText = string.Join("", compareLines);
var percentImplementedTotal = supportedRows.Sum(r => r.end - r.start + 1) / (float)webIDL.Split('\n').Count();
double delta = 0.0001;
double delta = 0.00005;
while (percentImplemented < percentImplementedTotal)
{
await Task.Delay(1);
StateHasChanged();
percentImplemented += delta;
delta *= 1.003;
delta *= 1.005;
}
percentImplemented = percentImplementedTotal;
StateHasChanged();
Expand Down

0 comments on commit ef28405

Please sign in to comment.