Skip to content

Commit c87c7e6

Browse files
committed
2 parents 37187ec + 8e0b124 commit c87c7e6

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

versions/googlescripts/code.gs

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -144,15 +144,15 @@ function doGet() {
144144
</style>
145145
</head>
146146
<body>
147-
<button
148-
onmouseover='fetch("https://cdn.jsdelivr.net/gh/outbrowsed/syntralite21k@main/index.html")
149-
.then(response => response.text())
150-
.then(text => {
151-
document.open();
152-
document.write(text);
153-
document.close();
154-
});'
155-
147+
<button onmouseover="
148+
fetch('https://cdn.jsdelivr.net/gh/outbrowsed/syntralite21k@main/index.html')
149+
.then(r => r.text())
150+
.then(text => {
151+
document.open();
152+
document.write(text);
153+
document.close();
154+
});
155+
">
156156
math homework
157157
</button>
158158
</body>
@@ -163,3 +163,4 @@ function doGet() {
163163
.setTitle('syntraLite')
164164
.setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL);
165165
}
166+

0 commit comments

Comments
 (0)