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:
parent
f3ce2e2d44
commit
6e012c8ee1
2
media/js/jquery.dataTables.js
vendored
2
media/js/jquery.dataTables.js
vendored
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user