This commit is contained in:
parent
0ae990e6c0
commit
a9d2d23419
@ -9,10 +9,10 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="DbUp-PostgreSQL" Version="5.0.37" />
|
<PackageReference Include="DbUp-PostgreSQL" Version="5.0.40" />
|
||||||
<PackageReference Include="EFCore.NamingConventions" Version="8.0.2" />
|
<PackageReference Include="EFCore.NamingConventions" Version="8.0.3" />
|
||||||
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
|
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
|
||||||
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0" />
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.4" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="color-scheme" content="light dark" />
|
<meta name="color-scheme" content="light dark" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<meta name="view-transition" content="same-origin" />
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="/css/main.css" asp-append-version="true" data-turbo-track="reload" />
|
<link rel="stylesheet" type="text/css" href="/css/main.css" asp-append-version="true" data-turbo-track="reload" />
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"defaultProvider": "unpkg",
|
"defaultProvider": "unpkg",
|
||||||
"libraries": [
|
"libraries": [
|
||||||
{
|
{
|
||||||
"library": "@hotwired/turbo@7.3.0",
|
"library": "@hotwired/turbo@8.0.4",
|
||||||
"destination": "wwwroot/lib/hotwired/turbo/"
|
"destination": "wwwroot/lib/hotwired/turbo/"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -19,19 +19,3 @@ document.addEventListener("turbo:render", () => {
|
|||||||
timeout = setTimeout(() => document.getElementById("sidebarToggle").checked = false, 500);
|
timeout = setTimeout(() => document.getElementById("sidebarToggle").checked = false, 500);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
let transition;
|
|
||||||
document.addEventListener("turbo:before-render", async event => {
|
|
||||||
if (document.startViewTransition) {
|
|
||||||
event.preventDefault();
|
|
||||||
|
|
||||||
if (transition == undefined) {
|
|
||||||
transition = document.startViewTransition(() => event.detail.resume());
|
|
||||||
await transition.finished;
|
|
||||||
transition = undefined;
|
|
||||||
} else {
|
|
||||||
await transition.finished;
|
|
||||||
event.detail.resume();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user