瀏覽代碼

Fixed comments

Brendan Abolivier 7 年之前
父節點
當前提交
c73e3118ab
簽署人: Brendan Abolivier <contact@brendanabolivier.com> GPG 金鑰 ID: 8EF1500759F70623
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3
    3
      front/form.js

+ 3
- 3
front/form.js 查看文件

@@ -333,16 +333,16 @@ function getFormData() {
333 333
 	data.token = token;
334 334
 	data.custom = {};
335 335
 
336
-	// Custom fields
337 336
 	// Select the field
338 337
 	let index = 0;
339
-
340 338
 	if(labels) {
341 339
 		index = 1;
342 340
 	}
343
-	
341
+
342
+	// Iterate over all the fields
344 343
 	for(let field in DOMFields) {
345 344
 		let el = DOMFields[field].children[index];
345
+		// Do we need to push this field into default or custom fields?
346 346
 		if(field in customFields) {
347 347
 			data.custom[field] = el.value;
348 348
 		} else {