aboutsummaryrefslogtreecommitdiffstats
path: root/docs
AgeCommit message (Collapse)Author
2013-09-04chore(ngdoc): fix version number parsing for doc version switcherIgor Minar
2013-09-03chore(ngdocs): ensure $animate is not shared between the docs and the ↵Matias Niemelä
example applications
2013-08-30fix(guide) broken title overflow in navlistgdi2290
2013-08-29docs(guide): remove duplicated `require` sectiontomazy
2013-08-28docs(guide): update description of $inject mechanism to be a little clearerphanboy4
2013-08-25test(docs): disable brittle tests that need to be rewrittenIgor Minar
2013-08-23fix($animate): skip ngAnimate animations if the provided element already has ↵Matias Niemelä
transitions/durations attached to it Closes #3587
2013-08-23fix($animate): only execute a timeout when transitions or keyframe ↵Matias Niemelä
animations are used ngAnimate causes a 1ms flicker on the screen when no CSS animations are present on the element. The solution is to change $animate to only use $timeouts when a duration is found on the element before the transition/keyframe animation takes over. Closes #3613
2013-08-23test(docs): ignore some of the specs on IEVojta Jina
This target was never un on our Jenkins CI. Some of the specs are using animation stuff, that IE does not support, so I'm disabling them.
2013-08-23chore(ngdocs): fix the version jumperMatias Niemelä
correct the ordering and make gen-docs prepare the list of versions during the build process
2013-08-22docs(overview): improve grammarBrian Ford
2013-08-22docs(module): improve the installation instructions for optional modulesBrian Ford
Currently, the documentation does a bad job of explaining the distinction between the services that it provides, and the module itself. Furthermore, the instructions for using optional modules are inconsistent or missing. This commit addresses the problem by ading a new `{@installModule foo}` annotation to the docs generator that inlines the appropriate instructions based on the name of the module.
2013-08-22docs(guide): warn about module creation versus retrievalghodss
Updated Module documentation to include the suggestion of the top-rated comment: "This documentation should warn that "angular.module('myModule', [])" always creates a new module, but "angular.module('myModule')" always retrieves an existing reference."
2013-08-22docs(guide): grammatical corrections to Form and Control definitionsMarcel Morgan
2013-08-21docs(tutorial): update step_00.ngdocgdennie
Clarify the little snippet on dash vs camelCase html to directive naming pattern Closes #3550
2013-08-21docs(tutorial): fix links in step 00Igor Minar
2013-08-21Update step_00.ngdocYang Pengcheng
the <a> is incorrect. there is no space between "a" and "href"
2013-08-21docs(tutorial): update step_07.ngdocrodbv
"Orthogonal" is a strange word for those without a mathematical/CS background. "Independent" is clearer. Closes #3641
2013-08-20fix(docs): fix diagram in tutorial/step_02Nepoxx
Removes whitespace before image tag as it caused it to be interpreted as a code block. Closes #3668
2013-08-20fix(ngdocs): use cdn version to generate link to source filesJames Daily
Closes #3616 Closes #3675
2013-08-16style(docs): replace CRLF by LF in svg header logoReto Aebersold
2013-08-16fix(docs): wrap error message text inside boxKen Sheedlo
2013-08-16chore(ngdocs): disable google analytics in e2e testsIgor Minar
GA is not needed during e2e tests, so I'm removing it to speed up the e2e test suite. See previous commits for more info.
2013-08-16chore(ngdocs): disable code prettification in e2e testsIgor Minar
code prettification is expensive and not needed for e2e tests, so I'm disabling it to speed up the e2e test suite. this is a temporary measure, see previous commit for more info.
2013-08-16chore(ngdocs): disable lunr search during e2e testsIgor Minar
lunr has been responsible for slowdown in our test suite by adding ~1sec per end-to-end test. (this is because it initializes the index when the app starts) since out test suite primarily tests the examples, it's reasonable do disable the search as a temporary meansure. the real fix is to use protractor and extract all of the examples into standalone apps which can be tested without bootstrapping the whole docs app.
2013-08-15chore(minerr): move $sce:insecurl file to sce directoryKen Sheedlo
Closes #3568
2013-08-14fix(tutorial): fix broken link caused by bad line breakebeal
2013-08-14test(docs): don't mock out window unnecessarilyIgor Minar
2013-08-14chore(ngdocs): fixup the docs version switcherIgor Minar
2013-08-14test(docs): add missing createMockWindow()Vojta Jina
Add missing angular.mock.createMockWindow (removed in 0dd062231a4d495133fd907eeae95c566380c6e1), that the docs tests were using.
2013-08-13docs(tutorial): fix links to ngRoute moduleVojta Jina
2013-08-12fix(minerr): escape double quotes in error displaysKen Sheedlo
Closes #3553
2013-08-12docs(minErr): add location/ipthprfxIgor Minar
2013-08-12docs(minErr): add location/isrcharg docsIgor Minar
2013-08-12docs(minErr): add location/ihshprfxIgor Minar
2013-08-12chore($location): drop bugus errorIgor Minar
we can never get to this state, so dropping the error
2013-08-09style(minerr): prefer component name as namespaceKen Sheedlo
Closes #3527
2013-08-09fix(re-bootstrap): Throw an error when bootstrapping a bootstrapped element.Jeff Cross
Nothing would prevent a user from accidentally calling angular.bootstrap on an element that had already been bootstrapped. If this was done, odd behavior could manifest in an application, causing different scopes to update the same DOM, and causing debugger confusion. This fix adds a check inside of angular.bootstrap to check if the passed-in element already has an injector, and if so, will throw an error.
2013-08-09chore(ngMobile): rename module ngTouch and file to angular-touch.jsBrian Ford
BREAKING CHANGE: since all the code in the ngMobile module is touch related, we are renaming the module to ngTouch. To migrate, please replace all references to "ngMobile" with "ngTouch" and "angular-mobile.js" to "angular-touch.js". Closes #3526
2013-08-09fix(docs-bootstrap): Removed injector from bootstrapped docs samplesJeff Cross
This is necessary to make e2e tests pass for implementing #3411. At present, the docs are violating the rule being enforced by double-bootstrap prevention.
2013-08-09docs(jqLite): update the minErr codes for on() and off()Igor Minar
2013-08-08fix(docs/error): make minerr ids searchableKen Sheedlo
Closes #3513
2013-08-08docs(compile/tplrt): description for compile/tplrt errorMisko Hevery
Closes #3459
2013-08-08docs(compile/selmulti): description for compile/selmulti errorMisko Hevery
Closes #3459
2013-08-08docs(compile/nodomevents): description for compile/nodomevents errorMisko Hevery
Closes #3459
2013-08-08docs(compile/notassign): description for compile/notassign errorMisko Hevery
Closes #3459
2013-08-08docs(compile/multidir): description for compile/multidir errorMisko Hevery
Closes #3459
2013-08-08docs(minErr): add controller/noscp docsIgor Minar
2013-08-08docs(minErr): add rootScope/inprog docsIgor Minar
2013-08-08docs(minErr): improve compiler/iscpIgor Minar