summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Kavon <me+git@alexkavon.com>2025-12-02 20:01:49 -0500
committerAlexander Kavon <me+git@alexkavon.com>2025-12-02 20:01:49 -0500
commitfa9963fe8826e28d7d3ac0b94f1cd72356286c4b (patch)
tree1211e1e9934fc0cb2274a5d844ab010d38b09028
parente8c8c76ffce9239a332afb7c3d98fb8b4f17fa50 (diff)
add warning about gridbit website being defunct
-rwxr-xr-xwebsite/hover.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/website/hover.js b/website/hover.js
index bb71fad..a654309 100755
--- a/website/hover.js
+++ b/website/hover.js
@@ -1,4 +1,5 @@
-$(document).ready(function() {
+$(document).ready(function() {
+ alert("This website is for viewable archive purposes only! None of the projects (except rapbot) exist, and these guys don't do this stuff anymore. Move on with your life!");
$(".link_box").hover(
function () {
$(this).addClass("hover");
@@ -7,4 +8,4 @@ $(document).ready(function() {
$(this).removeClass("hover");
}
);
-}); \ No newline at end of file
+});