parent
155cb05e39
commit
c397753ddb
|
@ -19,6 +19,7 @@
|
||||||
>
|
>
|
||||||
{tooltipText}
|
{tooltipText}
|
||||||
</span>
|
</span>
|
||||||
|
<Shortcut scope="global" key="Escape" on:pressed="dismiss()" />
|
||||||
<style>
|
<style>
|
||||||
.tooltip-button {
|
.tooltip-button {
|
||||||
border-bottom: 1px dotted;
|
border-bottom: 1px dotted;
|
||||||
|
@ -45,6 +46,8 @@
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
<script>
|
<script>
|
||||||
|
import Shortcut from './shortcut/Shortcut.html'
|
||||||
|
|
||||||
let counter = 0
|
let counter = 0
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
@ -66,7 +69,13 @@
|
||||||
if (e.keyCode === 32 || e.keyCode === 13) { // enter or space
|
if (e.keyCode === 32 || e.keyCode === 13) { // enter or space
|
||||||
this.toggle(e)
|
this.toggle(e)
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
dismiss () {
|
||||||
|
this.set({ shown: false })
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
components: {
|
||||||
|
Shortcut
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue