fix(core): update

This commit is contained in:
2021-09-01 21:48:22 +02:00
parent f7ee4d77fd
commit 66bf117bfc
6 changed files with 171 additions and 38 deletions

View File

@ -60,7 +60,7 @@ export class DeesUpdater extends LitElement {
grid-template-columns: 50% 50%;
}
</style>
<dees-windowlayer>
<dees-windowlayer @clicked="${this.windowLayerClicked}">
<div class="modalContainer">
<div class="headingContainer">
<dees-spinner .size=${60}></dees-spinner>
@ -74,4 +74,9 @@ export class DeesUpdater extends LitElement {
</dees-windowlayer>>
`;
}
private windowLayerClicked() {
const windowLayer = this.shadowRoot.querySelector('dees-windowlayer');
windowLayer.toggleVisibility();
}
}