Skip to content
New issue

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 #177

Open
MumblingFumbler opened this issue Nov 1, 2023 · 1 comment
Assignees

Comments

@MumblingFumbler
Copy link

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

@PierrickVoulet
Copy link

@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);
  }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants