aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2017-02-08 12:56:51 +0100
committerHakim El Hattab <hakim.elhattab@gmail.com>2017-02-08 12:56:51 +0100
commitadc326139a51079c2b8908a13f5d6a474ca4ee9f (patch)
tree7bc8b0bce04a0691c9cd99a437330f4a45583feb /js
parent9f99ac8b849aa26df98232bfa04db50eb2baa5ee (diff)
downloadfreenode-live-2017-presentation-adc326139a51079c2b8908a13f5d6a474ca4ee9f.tar
freenode-live-2017-presentation-adc326139a51079c2b8908a13f5d6a474ca4ee9f.tar.gz
update deserialize regex to work with decimals
Diffstat (limited to 'js')
-rw-r--r--js/reveal.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 125a7b6..4502919 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -1230,7 +1230,7 @@
if( value === 'null' ) return null;
else if( value === 'true' ) return true;
else if( value === 'false' ) return false;
- else if( value.match( /^\d+$/ ) ) return parseFloat( value );
+ else if( value.match( /^[\d\.]+$/ ) ) return parseFloat( value );
}
return value;