minor changes

This commit is contained in:
Tamius Han 2023-01-04 18:07:55 +01:00
parent 81e11c2ae9
commit f9d72d12b6
3 changed files with 6 additions and 3 deletions

View File

@ -3,6 +3,9 @@ import PlayerUiBase from './PlayerUiBase';
import mdiVue from 'mdi-vue/v3'; import mdiVue from 'mdi-vue/v3';
import * as mdijs from '@mdi/js'; 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) createApp(PlayerUiBase)
.use(mdiVue, {icons: mdijs}) .use(mdiVue, {icons: mdijs})
.mount('#app'); .mount('#app');

View File

@ -17,7 +17,7 @@
better performance. better performance.
</p> </p>
<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> </p>
<div class="performance-graph-container"> <div class="performance-graph-container">
<div class="performance-graph"> <div class="performance-graph">

View File

@ -12,9 +12,9 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<template v-for="site in settings.active.sites" :key="site"> <template v-for="(site, key) in settings.active.sites" :key="key">
<tr> <tr>
<!-- host --> <td>{{site}}</td> <!-- host --> <td>{{key}}</td>
<!-- official status? --> <td>{{settings.active.sites[site].type}}</td> <!-- official status? --> <td>{{settings.active.sites[site].type}}</td>
<!-- enabled? --> <td>todo: add</td> <!-- enabled? --> <td>todo: add</td>
<!-- full screen only? --> <td>{{settings.active.sites[site].restrictions?.fullScreenOnly}}</td> <!-- full screen only? --> <td>{{settings.active.sites[site].restrictions?.fullScreenOnly}}</td>