Skip to content

Commit 85fa839

Browse files
committed
Remove all blank characters
1 parent 8957608 commit 85fa839

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jquery.highchartTable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@
221221
serie.data.push(null);
222222
}
223223
} else {
224-
var cleanedCellValue = rawCellValue.replace(/ /g, '').replace(/,/, '.');
224+
var cleanedCellValue = rawCellValue.replace(/\s/g, '').replace(/,/, '.');
225225
cellValue = Math.round(parseFloat(cleanedCellValue) * column.scale * 100) / 100;
226226

227227
var dataGraphX = $td.data('graph-x');

0 commit comments

Comments
 (0)