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