JS: Record some missing alerts in FileAccessToHttp

This commit is contained in:
Asger F
2025-02-12 15:00:11 +01:00
parent cf33db78cc
commit c593853710

View File

@@ -11,7 +11,7 @@ function PostCode(codestring) {
'output_format': 'json',
'output_info': 'compiled_code',
'warning_level' : 'QUIET',
'js_code' : codestring // $ Alert - passing data from file to the request json body
'js_code' : codestring // $ MISSING: Alert - passing data from file to the request json body
});
// An object of options to indicate where to post to
@@ -34,7 +34,7 @@ function PostCode(codestring) {
});
});
post_req.write(post_data); // $ Alert - post the data from file to request body
post_req.write(post_data); // $ MISSING: Alert - post the data from file to request body
post_req.end();
}