Here in Austria we use comma as decimal separator instead of the dot. C# will use local culture settings when calling ToString on float and doubles. This causes the JavaScript to contain "0,5" instead of "0.5" which is syntactically wrong. In JsRenderer.cs#322 use culture specific string conversion to fix this problem:
Here in Austria we use comma as decimal separator instead of the dot. C# will use local culture settings when calling ToString on float and doubles. This causes the JavaScript to contain "0,5" instead of "0.5" which is syntactically wrong. In JsRenderer.cs#322 use culture specific string conversion to fix this problem: