| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-07-18 | feat(strict mode): adding strict mode flag to all js files | Igor Minar | |
| the flag must be in all src and test files so that we get the benefit of running in the strict mode even in jstd the following script was used to modify all files: for file in `find src test -name "*.js"`; do echo -e "'use strict';\n" > temp.txt cat $file >> temp.txt mv temp.txt $file done | |||
| 2011-06-08 | remove ng:format=index | Misko Hevery | |
| 2011-06-08 | Cleanup parser code to expose smaller API | Misko Hevery | |
| 2011-01-24 | fixed example rendering, add tests for it. | Misko Hevery | |
| 2011-01-14 | fixed select with ng:format | Misko 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-22 | Revert "Refactor lexer to use regular expressions" | Igor Minar | |
| We came across a major performance regression due to this change. I'm reverting it until we find a better solution. This reverts commit 23fc73081feb640164615930b36ef185c23a3526. | |||
| 2010-12-08 | Refactor lexer to use regular expressions | Misko Hevery | |
| 2010-12-08 | Remove RegExp parser | Misko Hevery | |
| - RegExp parser is rearly used, feature, and one should not have RegExps in views anyways, so we are removing it BACKWARD INCOMPATIBLE CHANGE!!! | |||
| 2010-12-08 | Fixed failed assignments of form abj[0].name=value | Misko Hevery | |
| Closes #169 | |||
| 2010-11-16 | Changed error handling so that better stack traces are displayed in the ↵ | Misko Hevery | |
| ng-errors | |||
| 2010-11-09 | Updated parser tests to use jasmine expects | Vojta Jina | |
| And some formatting as well and a bit of rafactor... | |||
| 2010-10-18 | JSON parser is now strict (ie, expressions are not allowed for security) | Misko Hevery | |
| Close #57 | |||
| 2010-10-15 | Fix unicode parsing Close #56 | Misko Hevery | |
| 2010-10-15 | fixed lint warnings and one flaky test | Misko Hevery | |
