theme-change
theme-change copied to clipboard
Support for Livewire 3 wire:navigate
Toggle is not working after navigate in a Livewire 3 app using wire:navigate.. you need to use livewire:navigated
instead of DOMContentLoaded
See here https://livewire.laravel.com/docs/navigate#dont-rely-on-domcontentloaded
@rustynail1984 Replace themeChange()
with
addEventListener('livewired:navigated', () => {
themeChange(false);
});
This also applies to anyone using turbo:
addEventListener("turbo:load", () => {
themeChange(false);
})