Skip to content
Snippets Groups Projects
Commit fdce2262 authored by Ron Lucke's avatar Ron Lucke
Browse files

fix #2674

Closes #2674

Merge request studip/studip!1878
parent 82a44222
No related branches found
No related tags found
No related merge requests found
<template>
<div
class="cw-companion-overlay"
:class="[showCompanion ? 'cw-companion-overlay-in' : '', showCompanion ? '' : 'cw-companion-overlay-out', styleCompanion]"
:aria-hidden="!showCompanion"
>
<div class="cw-companion-overlay-content" v-html="msgCompanion"></div>
<button class="cw-compantion-overlay-close" @click="hideCompanion"></button>
<div class="cw-companion-overlay-wrapper">
<div
class="cw-companion-overlay"
:class="[showCompanion ? 'cw-companion-overlay-in' : '', showCompanion ? '' : 'cw-companion-overlay-out', styleCompanion]"
aria-hidden="true"
>
<div class="cw-companion-overlay-content" v-html="msgCompanion"></div>
<button class="cw-compantion-overlay-close" @click="hideCompanion"></button>
</div>
<div
class="sr-only"
aria-live="polite"
role="log"
>
<p>{{ msgCompanion }}</p>
</div>
</div>
</template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment