Run prettier

This commit is contained in:
Fred Boniface 2024-06-23 23:48:40 +01:00
parent 3db490a0bb
commit 4fbec34f24
2 changed files with 69 additions and 69 deletions

View File

@ -71,60 +71,60 @@
{:then features} {:then features}
<h3>Critical Features</h3> <h3>Critical Features</h3>
{#if !features.critical} {#if !features.critical}
<p>OwlBoard will not function properly without these browser features. If you see any crosses here <p>
you may need to update your browser or choose another browser. Chrome, Edge, Firefox, Brave & Samsung Browser OwlBoard will not function properly without these browser features. If you see any crosses here you may need to update your browser or choose another browser. Chrome,
have been tested. Edge, Firefox, Brave & Samsung Browser have been tested.
</p> </p>
{/if} {/if}
<ul class="feature-list"> <ul class="feature-list">
<li> <li>
Fetch <span class="feature-status {features.missing.includes('fetch') ? 'cross' : 'tick'}"> Fetch <span class="feature-status {features.missing.includes('fetch') ? 'cross' : 'tick'}">
{features.missing.includes('fetch') ? '✗' : '✓'} {features.missing.includes("fetch") ? "✗" : "✓"}
</span> </span>
</li> </li>
<li> <li>
Local Storage <span class="feature-status {features.missing.includes('localStorage') ? 'cross' : 'tick'}"> Local Storage <span class="feature-status {features.missing.includes('localStorage') ? 'cross' : 'tick'}">
{features.missing.includes('localStorage') ? '✗' : '✓'} {features.missing.includes("localStorage") ? "✗" : "✓"}
</span> </span>
</li> </li>
<li> <li>
Session Storage <span class="feature-status {features.missing.includes('sessionStorage') ? 'cross' : 'tick'}"> Session Storage <span class="feature-status {features.missing.includes('sessionStorage') ? 'cross' : 'tick'}">
{features.missing.includes('sessionStorage') ? '✗' : '✓'} {features.missing.includes("sessionStorage") ? "✗" : "✓"}
</span> </span>
</li> </li>
<li> <li>
Promises <span class="feature-status {features.missing.includes('promise') ? 'cross' : 'tick'}"> Promises <span class="feature-status {features.missing.includes('promise') ? 'cross' : 'tick'}">
{features.missing.includes('promise') ? '✗' : '✓'} {features.missing.includes("promise") ? "✗" : "✓"}
</span> </span>
</li> </li>
</ul> </ul>
<h3>Nice-to-have Features</h3> <h3>Nice-to-have Features</h3>
{#if !features.nice} {#if !features.nice}
<p>OwlBoard may run slowly or be missing some functions without these browser features. If you see any crosses here <p>
you may want to update your browser or choose another browser for improved performance. Chrome, Edge, Firefox, OwlBoard may run slowly or be missing some functions without these browser features. If you see any crosses here you may want to update your browser or choose another
Brave & Samsung Browser have been tested. browser for improved performance. Chrome, Edge, Firefox, Brave & Samsung Browser have been tested.
</p> </p>
{/if} {/if}
<ul class="feature-list"> <ul class="feature-list">
<li> <li>
Geolocation <span class="feature-status {features.missing.includes('geolocation') ? 'cross' : 'tick'}"> Geolocation <span class="feature-status {features.missing.includes('geolocation') ? 'cross' : 'tick'}">
{features.missing.includes('geolocation') ? '✗' : '✓'} {features.missing.includes("geolocation") ? "✗" : "✓"}
</span> </span>
</li> </li>
<li> <li>
Service Worker <span class="feature-status {features.missing.includes('serviceWorker') ? 'cross' : 'tick'}"> Service Worker <span class="feature-status {features.missing.includes('serviceWorker') ? 'cross' : 'tick'}">
{features.missing.includes('serviceWorker') ? '✗' : '✓'} {features.missing.includes("serviceWorker") ? "✗" : "✓"}
</span> </span>
</li> </li>
<li> <li>
Dialog <span class="feature-status {features.missing.includes('dialog') ? 'cross' : 'tick'}"> Dialog <span class="feature-status {features.missing.includes('dialog') ? 'cross' : 'tick'}">
{features.missing.includes('dialog') ? '✗' : '✓'} {features.missing.includes("dialog") ? "✗" : "✓"}
</span> </span>
</li> </li>
<li> <li>
Popover API <span class="feature-status {features.missing.includes('popover') ? 'cross' : 'tick'}"> Popover API <span class="feature-status {features.missing.includes('popover') ? 'cross' : 'tick'}">
{features.missing.includes('popover') ? '✗' : '✓'} {features.missing.includes("popover") ? "✗" : "✓"}
</span> </span>
</li> </li>
</ul> </ul>