ctucx.git: oeffi-web

[nimlang] oeffisearch fork that works without javascript

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 'use strict';

import { registerLoaderOnLinks, showLoader, hideOverlay } from './helpers.js';

registerLoaderOnLinks();

window.onbeforeunload = function(e) {
	hideOverlay();
}

window.onpageshow = function(event) {
	if (event.persisted) {
		hideOverlay();
	}
};