aboutsummaryrefslogtreecommitdiffstats
path: root/src/validators.js
AgeCommit message (Collapse)Author
2011-02-16reformated multiline trinary expressions to have a leading ?/:.Misko Hevery
2011-02-01changed the documentation @example to use <doc:example>Misko Hevery
2011-01-24fixed example rendering, add tests for it.Misko Hevery
2011-01-10fix broken e2e test due to $window no longer publishedMisko Hevery
2011-01-10complete rewrite of documentation generationMisko Hevery
- romeved mustache.js - unified templates - improved testability of the code
2011-01-07change to keydown from keyup; add delayed $updateViewMisko Hevery
- There was a perceived lag when typing do to the fact that we were listening on the keyup event instead of keydown. The issue with keydown is that we can not read the value of the input field. To solve this we schedule a defer call and perform the model update then. - To prevent calling $eval on root scope too many times as well as to prevent drowning the browser with too many updates we now call the $eval only after 25ms and any additional requests get ignored. The new update service is called $updateView
2011-01-04rename scope.$inject to scope.$serviceIgor Minar
see changelog diff for more info
2011-01-04removing support for 'eager-published' servicesIgor Minar
2010-12-08Remove RegExp parserMisko 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-02Closes #170. Corrected the behavior of select when options are ng:repeatedMisko Hevery
- Delete $postEval method, as it was a hack
2010-11-18add @workInProgress tag and mark all @ngdocs as work in progressIgor Minar
2010-11-09improve jsdocsIgor Minar
- improve json filter example - improve filter overview doc - improving validator overview jsdocs - simplify number filter examples and make them live + add specs - various doc fixes
2010-11-09Better example widgetIgor Minar
- syntax highlighting - tabless design - rename widget to doc:example - rename widget files (wiki_widget.* -> doc_widget.*) - example section is now optional
2010-11-07Added documentation for validators.Misko Hevery
BACKWARD INCOMPATIBLE: removed ssn validators, since it is unlikely that most people will need it and if they do, they can added it thorough RegExp
2010-11-05added tests for documentationMisko Hevery
2010-11-05changed to showdown from markup. added validator overviewMisko Hevery
2010-11-04added documentation for ng:include and ng:widget and test for doc collector.Misko Hevery
2010-09-23make date validator use the Date objectBolek Szewczyk
2010-08-18stringify names for better compression, remove dead functions, removed ↵Misko Hevery
underscore.js compatibility
2010-06-16Fix bug with validator not triggering when attributes are bound and fix some ↵Shyam Seshadri
typos. Add test for bug
2010-04-16validation issues fixedMisko Hevery
2010-04-16lots of small fixesMisko Hevery
2010-04-12removed Meta and allowed binding of HTMLMisko Hevery
2010-04-07clean up, fixes for appMisko Hevery