aboutsummaryrefslogtreecommitdiff
path: root/install/js/install.js
blob: 8d36c8a65caa29cb44fdc7bd80072a70c8f3cf31 (plain)
1
2
3
4
5
6
7
8
9
10
11
// prevent double-submission of forms
$(function() {
	$('form').submit(function() {
		if (this.data('submitted')) {
			return false;
		}
		this.data('submitted', true);
		return true;
	});
});