Skip to content

Commit 1a22437

Browse files
committed
Small change to the help wording and fix comment.
1 parent 2e4e025 commit 1a22437

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

htdocs/js/PGProblemEditor/pgproblemeditor.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
.catch((err) => showMessage(`Error: ${err?.message ?? err}`));
155155
};
156156

157-
// Send a request to the server to convert_to_PGML the current PG code in the CodeMirror editor.
157+
// Send a request to the server to convert the current PG code in the CodeMirror editor.
158158
const convertCodeToPGML = () => {
159159
const request_object = {
160160
user: document.getElementById('hidden_user')?.value,
@@ -163,8 +163,8 @@
163163
};
164164

165165
request_object.rpc_command = 'convertCodeToPGML';
166-
request_object.pgCode = webworkConfig?.pgCodeMirror?.getValue()
167-
?? document.getElementById('problemContents')?.value ?? '';
166+
request_object.pgCode =
167+
webworkConfig?.pgCodeMirror?.getValue() ?? document.getElementById('problemContents')?.value ?? '';
168168

169169
fetch(webserviceURL, { method: 'post', mode: 'same-origin', body: new URLSearchParams(request_object) })
170170
.then((response) => response.json())
@@ -184,9 +184,11 @@
184184
document.getElementById('take_action')?.addEventListener('click', async (e) => {
185185
if (document.getElementById('current_action')?.value === 'format_code') {
186186
e.preventDefault();
187-
if (document.querySelector('input[name="action.format_code"]:checked').value == "tidyPGCode") {
187+
if (document.querySelector('input[name="action.format_code"]:checked').value == 'tidyPGCode') {
188188
tidyPGCode();
189-
} else if (document.querySelector('input[name="action.format_code"]:checked').value == "convertCodeToPGML") {
189+
} else if (
190+
document.querySelector('input[name="action.format_code"]:checked').value == 'convertCodeToPGML'
191+
) {
190192
convertCodeToPGML();
191193
}
192194
return;

templates/ContentGenerator/Instructor/PGProblemEditor/format_code_form.html.ep

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
. 'in the problem code to PGML and updates the loadMacros to include PGML and drop others. '
2525
. 'This can be used as a first pass of the conversion, however the author will still need '
2626
. 'to ensure the problem functions. One area of attention should be the answer blanks, '
27-
. 'which are not automatically converted with the proper variable.') =%>"
27+
. 'which may not be converted correctly.') =%>"
2828
data-bs-placement="top" data-bs-toggle="popover" role="button">
2929
<i aria-hidden="true" class="icon fas fa-question-circle" data-alt="Help Icon"></i>
3030
<span class="sr-only-glyphicon">Help Icon</span>

0 commit comments

Comments
 (0)