← back to Games Agentabrams
auto-save: 2026-07-25T10:05:29 (2 files) — games/rodeo-runner/index.html games/trivia-90210/index.html
79106c9a58f10f009c359b6e2aec68e418afb7b1 · 2026-07-25 10:05:38 -0700 · Steve Abrams
Files touched
M games/rodeo-runner/index.htmlM games/trivia-90210/index.html
Diff
commit 79106c9a58f10f009c359b6e2aec68e418afb7b1
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Sat Jul 25 10:05:38 2026 -0700
auto-save: 2026-07-25T10:05:29 (2 files) — games/rodeo-runner/index.html games/trivia-90210/index.html
---
games/rodeo-runner/index.html | 5 +++--
games/trivia-90210/index.html | 9 +++++----
2 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/games/rodeo-runner/index.html b/games/rodeo-runner/index.html
index 7e003a2..d1b92ea 100644
--- a/games/rodeo-runner/index.html
+++ b/games/rodeo-runner/index.html
@@ -352,8 +352,9 @@ canvas{ display:block; width:100%; height:100%; touch-action:none; }
function share(){
var s=Math.round(score);
var text="I cruised Rodeo Drive for "+s.toLocaleString()+" points in Rodeo Drive Runner. 🏎️💎 Beat me on 90210 row!";
- if(navigator.share){ navigator.share({title:"Rodeo Drive Runner",text:text}).catch(function(){}); }
- else if(navigator.clipboard){ navigator.clipboard.writeText(text).then(function(){ document.getElementById("shareLine").textContent="📋 Score copied."; }).catch(function(){}); }
+ var url="https://90210.agentabrams.com/#rodeo-runner";
+ if(navigator.share){ navigator.share({title:"Rodeo Drive Runner",text:text,url:url}).catch(function(){}); }
+ else if(navigator.clipboard){ navigator.clipboard.writeText(text+" "+url).then(function(){ document.getElementById("shareLine").textContent="📋 Score + link copied."; }).catch(function(){}); }
}
// ---- wire ----
diff --git a/games/trivia-90210/index.html b/games/trivia-90210/index.html
index 11f8cdf..9a67ace 100644
--- a/games/trivia-90210/index.html
+++ b/games/trivia-90210/index.html
@@ -533,13 +533,14 @@ body{
var pct = Math.round(100 * correctCount / deck.length);
var rk = rankFor(pct, score);
var text = "I scored " + score + " on 90210 Trivia — " + rk.t + " (" + pct + "% right). Can you beat the Zip? 🌴💎";
+ var url = "https://90210.agentabrams.com/#trivia-90210";
if(navigator.share){
- navigator.share({ title:"90210 Trivia", text:text }).catch(function(){});
+ navigator.share({ title:"90210 Trivia", text:text, url:url }).catch(function(){});
} else if(navigator.clipboard && navigator.clipboard.writeText){
- navigator.clipboard.writeText(text).then(function(){ $("shareNote").textContent = "📋 Score copied — paste it anywhere."; })
- .catch(function(){ $("shareNote").textContent = text; });
+ navigator.clipboard.writeText(text + " " + url).then(function(){ $("shareNote").textContent = "📋 Score + link copied — paste it anywhere."; })
+ .catch(function(){ $("shareNote").textContent = text + " " + url; });
} else {
- $("shareNote").textContent = text;
+ $("shareNote").textContent = text + " " + url;
}
}
← 589241e flappy-sky: cap playfield to a centered portrait column (fix
·
back to Games Agentabrams
·
Trivia + Runner share payloads now link to 90210.agentabrams b51f468 →