From 5e43572365a73a8abe5bcf711fdcff90b2bdbab3 Mon Sep 17 00:00:00 2001 From: yearski <39842469+yearski@users.noreply.github.com> Date: Fri, 12 Apr 2019 17:32:21 -0600 Subject: [PATCH] FIX: declare variables for script mode, bump rev --- jquery.calculadora.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jquery.calculadora.js b/jquery.calculadora.js index 0d920b5..5563cff 100644 --- a/jquery.calculadora.js +++ b/jquery.calculadora.js @@ -1,5 +1,5 @@ /* - * jQuery Calculadora 0.3 + * jQuery Calculadora 0.4 * Copyright 2013, Eduardo Molteni * */ @@ -131,7 +131,7 @@ } function formatNumber(n, c) { - var d = "."; var t = ","; + var d = "."; var t = ","; var i; var j; var s; if (options.useCommaAsDecimalMark) { d = ","; t = "."; }