Files
AI-Red-Teaming-Playground-L…/docker/ctfd/challenges_append.js
T
microsoft-github-operations[bot] 6659812f5b Initial commit
2025-05-18 06:12:26 -07:00

14 lines
394 B
JavaScript

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//Patch to perfom a reload of the page when a challenge is solved
document.addEventListener('DOMContentLoaded', () => {
setInterval(() => {
const reloadCmd = localStorage.getItem('reloadCmd');
if (reloadCmd) {
localStorage.removeItem('reloadCmd');
window.location.reload();
}
}, 1500);
});