diff options
| author | s1n <[email protected]> | 2019-09-26 16:54:59 -0700 |
|---|---|---|
| committer | s1n <[email protected]> | 2019-09-26 16:54:59 -0700 |
| commit | 79eb69e877d9145eedee5716f02141916d966b1c (patch) | |
| tree | a3a956f8e5dc18873e3e51ddc2e68a39d4cad283 | |
| parent | window alert test (diff) | |
| download | s1n.pw-admin-79eb69e877d9145eedee5716f02141916d966b1c.tar.xz s1n.pw-admin-79eb69e877d9145eedee5716f02141916d966b1c.zip | |
alert instead of window.alert
| -rw-r--r-- | js/performance-stats.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/performance-stats.js b/js/performance-stats.js index cf88077..ba45de2 100644 --- a/js/performance-stats.js +++ b/js/performance-stats.js @@ -21,7 +21,7 @@ setInterval(function () { context.fill(); // DO NOT ENABLE THIS LMAO // document.write("Text to display."); - window.alert("This is not permanent, just a testing page."); + alert("This is not permanent, just a testing page."); } stats.end(); }, 1000 / 60);
\ No newline at end of file |