Part-DB.Part-DB-server/assets/controllers/turbo/global_reload_controller.js

8 lines
244 B
JavaScript
Raw Normal View History

2022-07-24 14:41:28 +02:00
import { Controller } from '@hotwired/stimulus';
export default class extends Controller {
connect() {
//If we encounter an element with global reload controller, then reload the whole page
2022-07-30 13:25:29 +02:00
window.location.reload();
2022-07-24 14:41:28 +02:00
}
}