aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/docs-google-com-fix-forms/google_forms.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/docs-google-com-fix-forms/google_forms.js b/src/docs-google-com-fix-forms/google_forms.js
index 22e783c..e9b7dfd 100644
--- a/src/docs-google-com-fix-forms/google_forms.js
+++ b/src/docs-google-com-fix-forms/google_forms.js
@@ -5,6 +5,7 @@
*
* Copyright © 2021 jahoti <jahoti@tilde.team>
* Copyright 2022 Wojtek Kosior <koszko@koszko.org>
+ * Copytight 2022 Jacob K
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -45,7 +46,7 @@ for (let div of form.querySelectorAll('div[data-params]')) {
new_radio.value = input_div.getAttribute("data-value");
input_div.replaceWith(new_radio);
}
- /* handle checkboxes */
+ /* Handle checkboxes. */
for (const input_div of div.querySelectorAll('[data-answer-value]')) {
const new_checkbox = document.createElement('input');
new_checkbox.type = 'checkbox';
@@ -89,3 +90,4 @@ for (const next_but of document.querySelectorAll('[jsname=OCpkoe]'))
// TODO:
// * support "back" with instatiation of previous entries
// * find and fix form parts that still don't work (if any)
+