From 2d75ab3b4dcad01ee65123f680363d45bd9578a3 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Thu, 23 May 2019 20:00:23 -0700 Subject: [PATCH] "use strict" --- tax_ui.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tax_ui.js b/tax_ui.js index 4f2b625..57bd361 100644 --- a/tax_ui.js +++ b/tax_ui.js @@ -1,3 +1,5 @@ +"use strict"; + function load_tax_table(table_id, deductible_id) { return apply_deductible(parse_tax_table(document.getElementById(table_id).value), parseFloat(document.getElementById(deductible_id).value)); -- 2.44.1