From f28150e486394254bfc7a71cc77902f3e85d74a4 Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Tue, 4 Oct 2016 01:12:12 -0600 Subject: [PATCH] Change refill to recharge on places --- www/screens/place.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/www/screens/place.html b/www/screens/place.html index 28cb09f..6ee3d7b 100644 --- a/www/screens/place.html +++ b/www/screens/place.html @@ -73,13 +73,13 @@ $('#refillbtn').prop('disabled', false); if (placeteam == 0) { $('#refillbtn').addClass('disabled'); - $('#refillbtn').text("Refill"); + $('#refillbtn').text("Recharge"); $('#refillbtn').prop('disabled', true); } else if (placeteam == userteamid) { - $('#refillbtn').text("Refill"); + $('#refillbtn').text("Recharge"); } else { $('#refillbtn').addClass('disabled'); - $('#refillbtn').text("Refill"); + $('#refillbtn').text("Recharge"); $('#refillbtn').prop('disabled', true); } } @@ -211,13 +211,13 @@ $('#refillbtn').text(data.message); switch (Math.round(Math.random() * (3 - 1) + 1)) { case 1: - $('#place-log').prepend("Refilling...
"); + $('#place-log').prepend("Recharging...
"); break; case 2: - $('#place-log').prepend("Refilling..
"); + $('#place-log').prepend("Recharging..
"); break; case 3: - $('#place-log').prepend("Refilling....
"); + $('#place-log').prepend("Recharging....
"); } } else { $('#refillbtn').text(data.message);