We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
appendPre(...) function is used in the Javascript Sources but never defined TODO See: https://github.com/googleworkspace/browser-samples/blob/main/apps-script/execute/index.js
Sample URL: Description:
The text was updated successfully, but these errors were encountered:
@MumblingFumbler Thanks for reporting! Could you give it a try with the following and let us know if it behaves as expected:
function appendPre(message) { var pre = document.getElementById('content'); var textContent = document.createTextNode(message + '\n'); pre.appendChild(textContent); }
Sorry, something went wrong.
PierrickVoulet
No branches or pull requests
Summary
appendPre(...) function is used in the Javascript Sources but never defined
TODO
See: https://github.com/googleworkspace/browser-samples/blob/main/apps-script/execute/index.js
Expected Behavior
Sample URL:
Description:
Actual Behavior
Steps to Reproduce the Problem
The text was updated successfully, but these errors were encountered: