diff options
| author | s1n <[email protected]> | 2019-09-26 16:53:58 -0700 |
|---|---|---|
| committer | s1n <[email protected]> | 2019-09-26 16:53:58 -0700 |
| commit | 7a40ad7562d351937fe37f43fd062c07ac7faea0 (patch) | |
| tree | 8684a951c2247035b93fea026f4dcfda6174debe /js | |
| parent | add performance stats (diff) | |
| download | s1n.pw-admin-7a40ad7562d351937fe37f43fd062c07ac7faea0.tar.xz s1n.pw-admin-7a40ad7562d351937fe37f43fd062c07ac7faea0.zip | |
window alert test
Diffstat (limited to 'js')
| -rw-r--r-- | js/performance-stats.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/js/performance-stats.js b/js/performance-stats.js index 1015308..cf88077 100644 --- a/js/performance-stats.js +++ b/js/performance-stats.js @@ -19,6 +19,9 @@ setInterval(function () { context.beginPath(); context.arc(x, y, 10, 0, Math.PI * 2, true); context.fill(); + // DO NOT ENABLE THIS LMAO + // document.write("Text to display."); + window.alert("This is not permanent, just a testing page."); } stats.end(); }, 1000 / 60);
\ No newline at end of file |