aboutsummaryrefslogtreecommitdiffstats
path: root/docs/docs.js
AgeCommit message (Collapse)Author
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
2010-11-29dual scrolling for docs with custom scrollbarsIgor Minar
2010-11-18add a feedback link to the doc pagesIgor Minar
2010-11-18don't encode page.name (hash) in docs.jsIgor Minar
see discussion in https://github.com/angular/angular.js/pull/158"
2010-11-18group utility methods/objects while sorting stuff for the side barIgor Minar
2010-11-16docs should use ng:include onloadIgor Minar
2010-11-15generate keyword for searches; improved layout of docMisko Hevery
2010-11-03jsdoc parser + generator + viewer + scenario runnerMisko Hevery
- parse jsdocs from source code - generate prerendered (markdown + mustache) partials - generate json - generate scenario runner for examples in docs - basic angular doc viewer