From 605dc464af2e41a2a66ba817c063ec7b16fc9340 Mon Sep 17 00:00:00 2001 From: James Chapman Date: Wed, 10 Jul 2024 23:11:47 +0100 Subject: [PATCH] Update dependencies --- Groceries.Data/Groceries.Data.csproj | 6 +++--- Groceries/Components/Layout.razor | 3 ++- Groceries/libman.json | 2 +- Groceries/wwwroot/js/main.js | 16 ---------------- 4 files changed, 6 insertions(+), 21 deletions(-) diff --git a/Groceries.Data/Groceries.Data.csproj b/Groceries.Data/Groceries.Data.csproj index 2a2119d..a5cb5cf 100644 --- a/Groceries.Data/Groceries.Data.csproj +++ b/Groceries.Data/Groceries.Data.csproj @@ -9,10 +9,10 @@ - - + + - + diff --git a/Groceries/Components/Layout.razor b/Groceries/Components/Layout.razor index f250da7..382b147 100644 --- a/Groceries/Components/Layout.razor +++ b/Groceries/Components/Layout.razor @@ -6,8 +6,9 @@ + - + diff --git a/Groceries/libman.json b/Groceries/libman.json index 68ea9dc..a226e90 100644 --- a/Groceries/libman.json +++ b/Groceries/libman.json @@ -3,7 +3,7 @@ "defaultProvider": "unpkg", "libraries": [ { - "library": "@hotwired/turbo@7.3.0", + "library": "@hotwired/turbo@8.0.4", "destination": "wwwroot/lib/hotwired/turbo/" }, { diff --git a/Groceries/wwwroot/js/main.js b/Groceries/wwwroot/js/main.js index 3126f46..820be20 100644 --- a/Groceries/wwwroot/js/main.js +++ b/Groceries/wwwroot/js/main.js @@ -19,19 +19,3 @@ document.addEventListener("turbo:render", () => { 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(); - } - } -});