Merge pull request #35 from IT4Change/remove-debug-handlers

fix(frontend): deleted unused debug handlers
This commit is contained in:
Ulf Gebhardt 2023-12-28 12:57:13 +01:00 committed by GitHub
commit 2956ae54cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 17 deletions

View File

@ -1,5 +0,0 @@
function onHydrationEnd() {
// console.log('Hydration finished; page is now interactive.')
}
export { onHydrationEnd }

View File

@ -1,6 +0,0 @@
function onPageTransitionEnd() {
// console.log('Page transition end')
// document.body.classList.remove('page-transition')
}
export { onPageTransitionEnd }

View File

@ -1,6 +0,0 @@
function onPageTransitionStart() {
// console.log('Page transition start')
// document.body.classList.add('page-transition')
}
export { onPageTransitionStart }