From 448023aeabf4845ffe5be1c84fe1bc3d0782d843 Mon Sep 17 00:00:00 2001 From: Jennifer Bishop Date: Sat, 12 Sep 2015 16:32:39 -0400 Subject: [PATCH 1/2] I changed the tip percentage to 25%. --- tip.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tip.js b/tip.js index 9150333..4203dd4 100644 --- a/tip.js +++ b/tip.js @@ -1,6 +1,6 @@ "use strict"; function calculateTip(baseAmount) { - return (.2 * baseAmount); + return (.25 * baseAmount); } From 8e637228f94b51d5ae104ae14a63288db9ae6b1f Mon Sep 17 00:00:00 2001 From: Jennifer Bishop Date: Sat, 12 Sep 2015 16:41:01 -0400 Subject: [PATCH 2/2] I changed the percentage to 15%. --- tip.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tip.js b/tip.js index 4203dd4..020fba9 100644 --- a/tip.js +++ b/tip.js @@ -1,6 +1,6 @@ "use strict"; function calculateTip(baseAmount) { - return (.25 * baseAmount); + return (.15 * baseAmount); }