mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-24 01:39:06 +01:00
WIP: 👏 Accessibility 👏 Settings 👏 Everywhere 👏
This commit is contained in:
parent
8f0bb0d381
commit
d06005d87b
@ -169,6 +169,13 @@ function signup() {
|
|||||||
function showMenu(ev) {
|
function showMenu(ev) {
|
||||||
os.popupMenu(
|
os.popupMenu(
|
||||||
[
|
[
|
||||||
|
{
|
||||||
|
text: i18n.ts.settings,
|
||||||
|
icon: "ph-gear-six ph-bold ph-lg",
|
||||||
|
action: () => {
|
||||||
|
os.pageWindow("/settings");
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
text: i18n.ts.instanceInfo,
|
text: i18n.ts.instanceInfo,
|
||||||
icon: "ph-info ph-bold ph-lg",
|
icon: "ph-info ph-bold ph-lg",
|
||||||
|
@ -148,6 +148,13 @@ export default defineComponent({
|
|||||||
showMenu(ev) {
|
showMenu(ev) {
|
||||||
os.popupMenu(
|
os.popupMenu(
|
||||||
[
|
[
|
||||||
|
{
|
||||||
|
text: i18n.ts.settings,
|
||||||
|
icon: "ph-gear-six ph-bold ph-lg",
|
||||||
|
action: () => {
|
||||||
|
os.pageWindow("/settings");
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
text: i18n.t("aboutX", { x: instanceName }),
|
text: i18n.t("aboutX", { x: instanceName }),
|
||||||
icon: "ph-info ph-bold ph-lg",
|
icon: "ph-info ph-bold ph-lg",
|
||||||
|
@ -173,6 +173,13 @@ export default defineComponent({
|
|||||||
showMenu(ev) {
|
showMenu(ev) {
|
||||||
os.popupMenu(
|
os.popupMenu(
|
||||||
[
|
[
|
||||||
|
{
|
||||||
|
text: i18n.ts.settings,
|
||||||
|
icon: "ph-gear-six ph-bold ph-lg",
|
||||||
|
action: () => {
|
||||||
|
os.pageWindow("/settings");
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
text: i18n.t("aboutX", { x: instanceName }),
|
text: i18n.t("aboutX", { x: instanceName }),
|
||||||
icon: "ph-info ph-bold ph-lg",
|
icon: "ph-info ph-bold ph-lg",
|
||||||
|
@ -57,6 +57,10 @@
|
|||||||
<i class="ph-magnifying-glass ph-bold ph-lg icon"></i
|
<i class="ph-magnifying-glass ph-bold ph-lg icon"></i
|
||||||
><span>{{ i18n.ts.search }}</span>
|
><span>{{ i18n.ts.search }}</span>
|
||||||
</MkA>
|
</MkA>
|
||||||
|
<MkA to="/settings" class="link" active-class="active">
|
||||||
|
<i class="ph-gear-six ph-bold ph-lg icon"></i
|
||||||
|
><span>{{ i18n.ts.settings }}</span>
|
||||||
|
</MkA>
|
||||||
<div class="action">
|
<div class="action">
|
||||||
<button class="_buttonPrimary" @click="signup()">
|
<button class="_buttonPrimary" @click="signup()">
|
||||||
{{ i18n.ts.signup }}
|
{{ i18n.ts.signup }}
|
||||||
|
Loading…
Reference in New Issue
Block a user