aboutsummaryrefslogtreecommitdiffstats
path: root/docs
AgeCommit message (Collapse)Author
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-12-10improve doc app scrollbarsIgor Minar
2010-12-07make the docs angular 'logo' link filename agnosticIgor Minar
2010-12-07@returns tag should allow the content to be split into multiple linesIgor Minar
2010-12-06allow documentation to be in external fileMisko Hevery
* Load templates once instead of per request * show timing information * load files ending in .ngdoc and process them
2010-11-29fix typo in searchbox placeholderIgor Minar
2010-11-29searchbar in docs should not scroll awayIgor Minar
2010-11-29renaming #section to #main in docs html/cssIgor Minar
2010-11-29getting rid of #page div in docs index.htmlIgor Minar
2010-11-29dual scrolling for docs with custom scrollbarsIgor Minar
2010-11-29docs html/css cleanupIgor Minar
2010-11-25Doc specs: added test for markdownVojta Jina
It should replace markdown between two <pre></pre>***<pre></pre>
2010-11-25Small refactor in doc parserVojta Jina
2010-11-23docs for angular.Array.orderByIgor Minar
2010-11-18add a feedback link to the doc pagesIgor Minar
2010-11-18add @workInProgress tag and mark all @ngdocs as work in progressIgor 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-18title for index.html should not show raw binding while the app bootstrapsIgor Minar
2010-11-18move attribute widgets to widgets.js fileIgor Minar
- move @ng:repeat to widgets.js and its specs to widgetsSpecs.js - move @ng:non-bindable to widgets.js and its specs to widgetsSpecs.js - make widget.template suitable for attribute widgets - fix up the js docs for attribute widgets
2010-11-18add spec for incrementing headingsIgor Minar
2010-11-18add support for {@link} tags within @description and remove implicit linkingIgor Minar
use as: - foo {@link bar} - foo {@link bar desc} I'm removing implicit linking because it unintentionally links stuff and generally interferes with other conversions. We have to link stuff explicitely from now on.
2010-11-18docs linkifying regexp should not mess up links alreaded converete by markdownIgor Minar
2010-11-18make @param type and description non-optionalIgor Minar
2010-11-18CSS, Parameters, Returns template changesIgor Minar
- make css section optional - make returns section optional - change format of the parameters section - properly format the Returns section
2010-11-18adjust spacing of headings in the main doc divIgor Minar
2010-11-18adding support for @param.optionalIgor Minar
2010-11-18@returns description should support markdownIgor Minar
2010-11-18make @returns type non-optionalIgor Minar
2010-11-18group utility methods/objects while sorting stuff for the side barIgor Minar
2010-11-18remove extra returns tagIgor Minar
2010-11-18remove extra toolbar directive and support multiple pre's in describeIgor Minar
2010-11-18add support for @deprecated ng:doc annotation + show warnings in templatesIgor Minar
2010-11-18add function.templateIgor Minar
2010-11-16fix regexp for @param parsing in ng:docsIgor Minar
There is an extra + in the regexp which causes exponential increase in time needed to parse a @param annotation when the length of default value increases linearly.
2010-11-16docs should use ng:include onloadIgor Minar
2010-11-15Added basic Services, which support @memberOf and @methodOfVojta Jina
2010-11-15generate keyword for searches; improved layout of docMisko Hevery
2010-11-15changed to ! notation for indexable appsMisko Hevery
2010-11-15added remaining directives and search box.Misko Hevery
2010-11-10Example snippets now have full html snippetsMisko Hevery
2010-11-10Added DirectivesMisko Hevery
2010-11-10Make the docs look a little nicerElliott Sprehn
2010-11-09proper trimming of leading whitespace; url restriction to angular.*Misko Hevery
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-09Added formatter documentation.Misko Hevery
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-11-03fixing docs scenario runner templateIgor Minar