Hi all,
I have been using some Google Scripts to run a variety of web pages, and at some point during 2019, noticed that my scripts no longer run on Chrome for iOS specifically. Having now bashed my head against the wall several times over, I wanted to see if anyone out there had run into this issue, and if there was a known fix.
Specifically, I create a Google Script through Google Drive. There, I create a simple script; in this case, I did so using one of the examples on the Samples section. Namely, my Index.html file is:
<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body>
Hello, World!
</body>
</html>
and my Google script is:
When I go there on desktop, it works perfectly well. I get the warning at the top that the application was created by another user, etc., and the terms of service, followed by the content (in this case, "Hello World!". When I go there on the Chrome app on iOS, I get the warning/terms of service bar, but no content below. Using Safari on iOS seems to work (but I try to stick to Chrome because I like it better).
I tried to hunt through the console (chrome://inspect) but no messages/etc appear in the Chrome interface there.
Any help would be greatly appreciated, if there's something obvious I missed. I hadn't been sure if it was something like Bootstrap or Angular, but even a basic Hello World like above seems to fail, stumping me.
Thanks,
Fred