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

Dev fix: Thousands separator was incorrectly applied

- This was from my old work on experimenting with removing hugraian
  notation, it slipped through to be committed.
This commit is contained in:
Allan Jardine 2013-02-16 11:33:50 +00:00
parent f3ce2e2d44
commit 6e012c8ee1
2 changed files with 2 additions and 2 deletions

View File

@ -8608,7 +8608,7 @@
{
if ( i%3 === 0 && i !== 0 )
{
out = this.language.infoThousands+out;
out = this.oLanguage.sInfoThousands+out;
}
out = a[iLen-i-1]+out;
}

View File

@ -938,7 +938,7 @@ DataTable.defaults = {
{
if ( i%3 === 0 && i !== 0 )
{
out = this.language.infoThousands+out;
out = this.oLanguage.sInfoThousands+out;
}
out = a[iLen-i-1]+out;
}