aboutsummaryrefslogtreecommitdiff
path: root/public/rsc/js/app.js
blob: 1f1df61b82a47f3a93177b56d9c251da909279e7 (plain)
1
2
3
4
5
6
7
function confirmSubmit(event, element, idform) {
	if (window.confirm('Confirm ? ' + element) === false) {
		event.preventDefault();
	} else {
		document.getElementById(idform).submit();
	}
}