demarches-normaliennes/app/javascript/shared/page-update-event.js

10 lines
211 B
JavaScript
Raw Normal View History

2019-08-01 15:22:37 +02:00
import { fire } from '@utils';
2020-05-07 16:31:36 +02:00
addEventListener('DOMContentLoaded', function () {
2019-08-01 15:22:37 +02:00
fire(document, 'ds:page:update');
});
2020-04-30 15:42:29 +02:00
addEventListener('ajax:success', function () {
2019-08-01 15:22:37 +02:00
fire(document, 'ds:page:update');
});