Changes between Version 1 and Version 2 of Ticket #18466, comment 3
- Timestamp:
- Feb 9, 2015, 2:49:55 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18466, comment 3
v1 v2 3 3 Especially, https://github.com/dojo/dojo/blob/master/number.js#L348 is problematic. If the currency pattern from cldr contains a space before or after the currency symbol, those spaces will be matched by the regexp even if the symbol is undefined (like when there is no currency constraint on the `CurrencyTextBox`). 4 4 5 This behavior looks like a bug to me as those spaces are here only because of the currency symbol and don't have a meaning without it (which is different of white spaces used as group delimiter). 6 5 7 A potential fix can be found in https://github.com/dojo/dojo/pull/139 6 8