Remove comma in numbers module

Hi guys!

I want to remove the commas in the numbers module and add a space instead. I have tried to solve this by overriding the module but i cant find the a solution :P. I can remove the comma in the initial state but when the counting starts it adds commas.

Could anyone help me achieve this :)?

Hi Martin,

Commas are added in js/frontend.js using the FLBuilderNumber.addCommas function. You could modify that in your override to return the number with no commas like so…

FLBuilderNumber.addCommas = function( n ){
	return n;
};

Let me know if you have any questions about that.

Justin