1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-03-15 16:29:16 +01:00

Fix: number rendering helper couldn't use anything thing other than a dot (.) as the decimal place

* See thread 21315 for details
This commit is contained in:
Allan Jardine 2014-06-09 14:38:34 +01:00
parent 2300aa8ff5
commit 1d159700bd
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
7843290f1affa5e4471d2214e6807e97e4422ee0
d4712d3aca31b553dc940f1d99ed8cda039399e2

View File

@ -14093,7 +14093,7 @@
d = parseFloat( d );
var intPart = parseInt( d, 10 );
var floatPart = precision ?
(decimal+(d - intPart).toFixed( precision )).substring( 2 ):
decimal+(d - intPart).toFixed( precision ).substring( 2 ):
'';
return (prefix||'') +