From 721ca12e809cf37bb20f654a3d3ff4dee3945293 Mon Sep 17 00:00:00 2001 From: luckysideburn Date: Tue, 31 Dec 2024 09:30:12 +0000 Subject: [PATCH] fix --- html/index.html | 12 ++++++------ html/js/kubeinvaders.js | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/html/index.html b/html/index.html index 5ecfd22..535b68a 100644 --- a/html/index.html +++ b/html/index.html @@ -340,9 +340,9 @@ h => Enable or disable help
s => Enable or disable shuffle for aliens
n => Change the namespace
- p => Display pods
- c => Display nodes
- v => Display virtual machines (KubeVirt)
+ p => Display pods switch
+ c => Display nodes switch
+ v => Display virtual machines (KubeVirt) switch
diff --git a/html/js/kubeinvaders.js b/html/js/kubeinvaders.js index 99cdaf5..608a2b2 100644 --- a/html/js/kubeinvaders.js +++ b/html/js/kubeinvaders.js @@ -742,9 +742,9 @@ window.setInterval(function draw() { ctx.fillText('h => Enable or disable help', 10, 280); ctx.fillText('s => Enable or disable shuffle for aliens', 10, 300); ctx.fillText('n => Change the namespace', 10, 320); - ctx.fillText('p => Display pods', 10, 340); - ctx.fillText('c => Display nodes', 10, 360); - ctx.fillText('v => Display virtual machines (KubeVirt)', 10, 380); + ctx.fillText('p => Display pods switch', 10, 340); + ctx.fillText('c => Display nodes switch', 10, 360); + ctx.fillText('v => Display virtual machines (KubeVirt) switch', 10, 380); } }, 10)