From 618dbc2a6d5eaadf51a3b13d518ce6275526f9d1 Mon Sep 17 00:00:00 2001 From: Jacob K Date: Sun, 14 Aug 2022 19:19:05 -0500 Subject: [Google Forms] Add copyright line and a minor text fix. --- src/docs-google-com-fix-forms/google_forms.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 * Copyright 2022 Wojtek Kosior + * 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) + -- cgit v1.2.3