Run prettier
This commit is contained in:
parent
3db490a0bb
commit
4fbec34f24
@ -71,60 +71,60 @@
|
||||
{:then features}
|
||||
<h3>Critical Features</h3>
|
||||
{#if !features.critical}
|
||||
<p>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, Edge, Firefox, Brave & Samsung Browser
|
||||
have been tested.
|
||||
<p>
|
||||
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,
|
||||
Edge, Firefox, Brave & Samsung Browser have been tested.
|
||||
</p>
|
||||
{/if}
|
||||
<ul class="feature-list">
|
||||
<li>
|
||||
Fetch <span class="feature-status {features.missing.includes('fetch') ? 'cross' : 'tick'}">
|
||||
{features.missing.includes('fetch') ? '✗' : '✓'}
|
||||
{features.missing.includes("fetch") ? "✗" : "✓"}
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
Local Storage <span class="feature-status {features.missing.includes('localStorage') ? 'cross' : 'tick'}">
|
||||
{features.missing.includes('localStorage') ? '✗' : '✓'}
|
||||
{features.missing.includes("localStorage") ? "✗" : "✓"}
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
Session Storage <span class="feature-status {features.missing.includes('sessionStorage') ? 'cross' : 'tick'}">
|
||||
{features.missing.includes('sessionStorage') ? '✗' : '✓'}
|
||||
{features.missing.includes("sessionStorage") ? "✗" : "✓"}
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
Promises <span class="feature-status {features.missing.includes('promise') ? 'cross' : 'tick'}">
|
||||
{features.missing.includes('promise') ? '✗' : '✓'}
|
||||
{features.missing.includes("promise") ? "✗" : "✓"}
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h3>Nice-to-have Features</h3>
|
||||
{#if !features.nice}
|
||||
<p>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 browser for improved performance. Chrome, Edge, Firefox,
|
||||
Brave & Samsung Browser have been tested.
|
||||
<p>
|
||||
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
|
||||
browser for improved performance. Chrome, Edge, Firefox, Brave & Samsung Browser have been tested.
|
||||
</p>
|
||||
{/if}
|
||||
<ul class="feature-list">
|
||||
<li>
|
||||
Geolocation <span class="feature-status {features.missing.includes('geolocation') ? 'cross' : 'tick'}">
|
||||
{features.missing.includes('geolocation') ? '✗' : '✓'}
|
||||
{features.missing.includes("geolocation") ? "✗" : "✓"}
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
Service Worker <span class="feature-status {features.missing.includes('serviceWorker') ? 'cross' : 'tick'}">
|
||||
{features.missing.includes('serviceWorker') ? '✗' : '✓'}
|
||||
{features.missing.includes("serviceWorker") ? "✗" : "✓"}
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
Dialog <span class="feature-status {features.missing.includes('dialog') ? 'cross' : 'tick'}">
|
||||
{features.missing.includes('dialog') ? '✗' : '✓'}
|
||||
{features.missing.includes("dialog") ? "✗" : "✓"}
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
Popover API <span class="feature-status {features.missing.includes('popover') ? 'cross' : 'tick'}">
|
||||
{features.missing.includes('popover') ? '✗' : '✓'}
|
||||
{features.missing.includes("popover") ? "✗" : "✓"}
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
|
Loading…
Reference in New Issue
Block a user