minor changes
This commit is contained in:
parent
81e11c2ae9
commit
f9d72d12b6
@ -3,6 +3,9 @@ import PlayerUiBase from './PlayerUiBase';
|
||||
import mdiVue from 'mdi-vue/v3';
|
||||
import * as mdijs from '@mdi/js';
|
||||
|
||||
// NOTE — this is in-player interface for ultrawidify
|
||||
// it is injected into the page in UI.init()
|
||||
|
||||
createApp(PlayerUiBase)
|
||||
.use(mdiVue, {icons: mdijs})
|
||||
.mount('#app');
|
||||
|
@ -17,7 +17,7 @@
|
||||
better performance.
|
||||
</p>
|
||||
<p>
|
||||
Note that some browsers <a href="https://developer.mozilla.org/en-US/docs/Web/API/Performance/now" target="_blank">limit the accuracy of time measurements</a>.
|
||||
Note that some browsers <a href="https://developer.mozilla.org/en-US/docs/Web/API/Performance/now" target="_blank">limit the accuracy of time measurements</a>, though once the bars go past the blue line those limitations are largely inconsequential.
|
||||
</p>
|
||||
<div class="performance-graph-container">
|
||||
<div class="performance-graph">
|
||||
|
@ -12,9 +12,9 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<template v-for="site in settings.active.sites" :key="site">
|
||||
<template v-for="(site, key) in settings.active.sites" :key="key">
|
||||
<tr>
|
||||
<!-- host --> <td>{{site}}</td>
|
||||
<!-- host --> <td>{{key}}</td>
|
||||
<!-- official status? --> <td>{{settings.active.sites[site].type}}</td>
|
||||
<!-- enabled? --> <td>todo: add</td>
|
||||
<!-- full screen only? --> <td>{{settings.active.sites[site].restrictions?.fullScreenOnly}}</td>
|
||||
|
Loading…
Reference in New Issue
Block a user