aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/comments/frontend/validateemail.js
blob: 6fedf286b7a46effc51bdbb59db081bb1d850c43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Validate a comment form e-mail field (validateemail.js)
HashOver.prototype.validateEmail = function (type, permalink, form, isReply, isEdit)
{
	type = type || 'main';
	permalink = permalink || null;
	isReply = isReply || false;
	isEdit = isEdit || false;

	// Subscribe checkbox ID
	var subscribe = type + '-subscribe';

	// Check whether comment is an reply or edit
	if (isReply === true || isEdit === true) {
		// If so, use form subscribe checkbox
		subscribe += '-' + permalink;
	}

	// Validate form fields
	return this.emailValidator (form, subscribe, type, permalink, isReply, isEdit);
};