aboutsummaryrefslogtreecommitdiffstats
path: root/test/JsonSpec.js
AgeCommit message (Collapse)Author
2011-01-14fixed select with ng:formatMisko Hevery
select (one/multiple) could not chose from a list of objects, since DOM requires string ids. Solved by adding index formatter, which exposed incorrect handling of formatters in select widgets.
2010-12-22fromJson delegation to native JSON parser if availableIgor Minar
- native parser delegation - $xhr change to use native parser
2010-12-11Stricter JSON parsing, for securityMisko Hevery
2010-11-16Changed error handling so that better stack traces are displayed in the ↵Misko Hevery
ng-errors
2010-11-08Support ISO 8601 extended datetime format troughout angular.Igor Minar
Support ISO 8601 extended format datetime strings (YYYY-MM-DDTHH:mm:ss.SSSZ) as defined in EcmaScript 5 throughout angular. This means that the following apis switched from YYYY-MM-DDTHH:mm:ssZ to YYYY-MM-DDTHH:mm:ss.SSSZ (note the added millis) when representing dates: - angular.Date.toString - angular.String.toDate - JSON serialization and deserialization (used by json filter, $xhr and $resource)
2010-11-05Updated toJson() to not serialize window/document objects.Vojta Jina
The reason to void these to objects is that they cause all sorts of problems like exceptions being thrown and infinite loops occuring when we iterate over object properties.
2010-11-05Changed toJson() to not ignore $ propertiesVojta Jina
2010-11-05Json - corrected test descriptions and changed to BDD style expect()Vojta Jina
2010-11-05fix error in json parser which did not allow 1.2E10 as numberMisko Hevery
2010-11-03Serialize RegExp to string in JSON. Closes #119.Elliott Sprehn
2010-10-20fixed negative numbers in JsonMisko Hevery
2010-10-18JSON parser is now strict (ie, expressions are not allowed for security)Misko Hevery
Close #57