Browse Source
Merge pull request #260 from Teraskull/fix-modal-flash
Fix modals flashing on reload
pull/282/head
Emile Nijssen
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
11 additions and
5 deletions
-
src/www/index.html
|
|
@ -10,12 +10,18 @@ |
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> |
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes"> |
|
|
|
</head> |
|
|
|
|
|
|
|
<style> |
|
|
|
[v-cloak] { |
|
|
|
display: none; |
|
|
|
} |
|
|
|
</style> |
|
|
|
|
|
|
|
<body class="bg-gray-50"> |
|
|
|
|
|
|
|
<div id="app"> |
|
|
|
|
|
|
|
<div class="container mx-auto max-w-3xl"> |
|
|
|
<div v-cloak class="container mx-auto max-w-3xl"> |
|
|
|
|
|
|
|
<div v-if="authenticated === true"> |
|
|
|
<span v-if="requiresPassword" |
|
|
@ -101,7 +107,7 @@ |
|
|
|
<div class="flex-grow"> |
|
|
|
|
|
|
|
<!-- Name --> |
|
|
|
<div class="text-gray-700 group" :title="'Created at ' + dateTime(new Date(client.createdAt))"> |
|
|
|
<div class="text-gray-700 group" :title="'Created on ' + dateTime(new Date(client.createdAt))"> |
|
|
|
|
|
|
|
<!-- Show --> |
|
|
|
<input v-show="clientEditNameId === client.id" v-model="clientEditName" |
|
|
@ -179,7 +185,7 @@ |
|
|
|
|
|
|
|
<!-- Last seen --> |
|
|
|
<span v-if="client.latestHandshakeAt" |
|
|
|
:title="'Last seen at ' + dateTime(new Date(client.latestHandshakeAt))"> |
|
|
|
:title="'Last seen on ' + dateTime(new Date(client.latestHandshakeAt))"> |
|
|
|
· {{new Date(client.latestHandshakeAt) | timeago}} |
|
|
|
</span> |
|
|
|
</div> |
|
|
@ -465,7 +471,7 @@ |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
<p class="text-center m-10 text-gray-300 text-xs">Made by <a target="_blank" class="hover:underline" |
|
|
|
<p v-cloak class="text-center m-10 text-gray-300 text-xs">Made by <a target="_blank" class="hover:underline" |
|
|
|
href="https://emilenijssen.nl/?ref=wg-easy">Emile Nijssen</a> · <a class="hover:underline" |
|
|
|
href="https://github.com/sponsors/WeeJeWel" target="_blank">Donate</a> · <a class="hover:underline" |
|
|
|
href="https://github.com/weejewel/wg-easy" target="_blank">GitHub</a></p> |
|
|
@ -482,4 +488,4 @@ |
|
|
|
<script src="./js/app.js"></script> |
|
|
|
</body> |
|
|
|
|
|
|
|
</html> |
|
|
|
</html> |
|
|
|