Spaces:
Paused
Paused
File size: 238 Bytes
a548ebc | 1 2 3 4 5 6 7 | document.addEventListener('DOMContentLoaded', event => {
document.getElementById('theButton').addEventListener("click", event => {
// Just go back to the outside iframe we came from.
window.history.back();
});
}); |