Skip to content

Commit

Permalink
Deploy preview for PR 19 🛫
Browse files Browse the repository at this point in the history
  • Loading branch information
rossjrw committed Sep 11, 2024
1 parent 5ad80b3 commit d66c3f5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pr-preview/pr-19/scp-3211/en/3211@2.0.3.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pr-preview/pr-19/scp-3211/jp/3211@2.0.3.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pr-preview/pr-19/scp-3211/zh/3211@2.0.3.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions pr-preview/pr-19/scp-head/controller@0.0.0.html
Original file line number Diff line number Diff line change
Expand Up @@ -459,10 +459,12 @@
addEventListener("message", (message) => {
processScoutReport(message, resize);
});
// Process all queued scout reports
while (scoutReportQueue.length > 0) {
processScoutReport(scoutReportQueue.shift(), resize);
}
if (scoutReportQueue.length > 0) {
// Process all queued scout reports
while (scoutReportQueue.length > 0) {
processScoutReport(scoutReportQueue.shift(), resize);
}
} else preloadNextAssertionState();
});
</script>
</head>
Expand Down

0 comments on commit d66c3f5

Please sign in to comment.