Skip to content

Commit

Permalink
#923: rename a11YNotificationEnabled to a11YScreenreaderModeEnabled
Browse files Browse the repository at this point in the history
  • Loading branch information
lehju committed Jun 3, 2024
1 parent 7074941 commit 26f32ee
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</v-list-item>
<v-list-item
class="max-v-list-item-height"
@click.stop="changeA11YNotificationMode"
@click.stop="changeA11YScreenreaderMode"
>
<HighContrastIcon class="mr-2"/>
Screenreader Optimierung
Expand Down Expand Up @@ -109,7 +109,7 @@ export default defineComponent({
setHighContrastModeEnabled(!isEnabled);
};
const changeA11YNotificationMode = () => {
const changeA11YScreenreaderMode = () => {
const isEnabled = a11YScreenreaderModeEnabled();
setA11YScreenreaderModeEnabled(!isEnabled);
};
Expand All @@ -118,7 +118,7 @@ export default defineComponent({
changeMode,
isHighContrastModeEnabled,
a11YScreenreaderModeEnabled,
changeA11YNotificationMode
changeA11YScreenreaderMode
};
},
Expand Down

0 comments on commit 26f32ee

Please sign in to comment.