| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-09-04 | chore(ngdoc): fix version number parsing for doc version switcher | Igor Minar | |
| 2013-09-03 | chore(ngdocs): ensure $animate is not shared between the docs and the ↵ | Matias Niemelä | |
| example applications | |||
| 2013-08-30 | fix(guide) broken title overflow in navlist | gdi2290 | |
| 2013-08-29 | docs(guide): remove duplicated `require` section | tomazy | |
| 2013-08-28 | docs(guide): update description of $inject mechanism to be a little clearer | phanboy4 | |
| 2013-08-25 | test(docs): disable brittle tests that need to be rewritten | Igor Minar | |
| 2013-08-23 | fix($animate): skip ngAnimate animations if the provided element already has ↵ | Matias Niemelä | |
| transitions/durations attached to it Closes #3587 | |||
| 2013-08-23 | fix($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-23 | test(docs): ignore some of the specs on IE | Vojta 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-23 | chore(ngdocs): fix the version jumper | Matias Niemelä | |
| correct the ordering and make gen-docs prepare the list of versions during the build process | |||
| 2013-08-22 | docs(overview): improve grammar | Brian Ford | |
| 2013-08-22 | docs(module): improve the installation instructions for optional modules | Brian 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-22 | docs(guide): warn about module creation versus retrieval | ghodss | |
| 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-22 | docs(guide): grammatical corrections to Form and Control definitions | Marcel Morgan | |
| 2013-08-21 | docs(tutorial): update step_00.ngdoc | gdennie | |
| Clarify the little snippet on dash vs camelCase html to directive naming pattern Closes #3550 | |||
| 2013-08-21 | docs(tutorial): fix links in step 00 | Igor Minar | |
| 2013-08-21 | Update step_00.ngdoc | Yang Pengcheng | |
| the <a> is incorrect. there is no space between "a" and "href" | |||
| 2013-08-21 | docs(tutorial): update step_07.ngdoc | rodbv | |
| "Orthogonal" is a strange word for those without a mathematical/CS background. "Independent" is clearer. Closes #3641 | |||
| 2013-08-20 | fix(docs): fix diagram in tutorial/step_02 | Nepoxx | |
| Removes whitespace before image tag as it caused it to be interpreted as a code block. Closes #3668 | |||
| 2013-08-20 | fix(ngdocs): use cdn version to generate link to source files | James Daily | |
| Closes #3616 Closes #3675 | |||
| 2013-08-16 | style(docs): replace CRLF by LF in svg header logo | Reto Aebersold | |
| 2013-08-16 | fix(docs): wrap error message text inside box | Ken Sheedlo | |
| 2013-08-16 | chore(ngdocs): disable google analytics in e2e tests | Igor 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-16 | chore(ngdocs): disable code prettification in e2e tests | Igor 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-16 | chore(ngdocs): disable lunr search during e2e tests | Igor 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-15 | chore(minerr): move $sce:insecurl file to sce directory | Ken Sheedlo | |
| Closes #3568 | |||
| 2013-08-14 | fix(tutorial): fix broken link caused by bad line break | ebeal | |
| 2013-08-14 | test(docs): don't mock out window unnecessarily | Igor Minar | |
| 2013-08-14 | chore(ngdocs): fixup the docs version switcher | Igor Minar | |
| 2013-08-14 | test(docs): add missing createMockWindow() | Vojta Jina | |
| Add missing angular.mock.createMockWindow (removed in 0dd062231a4d495133fd907eeae95c566380c6e1), that the docs tests were using. | |||
| 2013-08-13 | docs(tutorial): fix links to ngRoute module | Vojta Jina | |
| 2013-08-12 | fix(minerr): escape double quotes in error displays | Ken Sheedlo | |
| Closes #3553 | |||
| 2013-08-12 | docs(minErr): add location/ipthprfx | Igor Minar | |
| 2013-08-12 | docs(minErr): add location/isrcharg docs | Igor Minar | |
| 2013-08-12 | docs(minErr): add location/ihshprfx | Igor Minar | |
| 2013-08-12 | chore($location): drop bugus error | Igor Minar | |
| we can never get to this state, so dropping the error | |||
| 2013-08-09 | style(minerr): prefer component name as namespace | Ken Sheedlo | |
| Closes #3527 | |||
| 2013-08-09 | fix(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-09 | chore(ngMobile): rename module ngTouch and file to angular-touch.js | Brian 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-09 | fix(docs-bootstrap): Removed injector from bootstrapped docs samples | Jeff 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-09 | docs(jqLite): update the minErr codes for on() and off() | Igor Minar | |
| 2013-08-08 | fix(docs/error): make minerr ids searchable | Ken Sheedlo | |
| Closes #3513 | |||
| 2013-08-08 | docs(compile/tplrt): description for compile/tplrt error | Misko Hevery | |
| Closes #3459 | |||
| 2013-08-08 | docs(compile/selmulti): description for compile/selmulti error | Misko Hevery | |
| Closes #3459 | |||
| 2013-08-08 | docs(compile/nodomevents): description for compile/nodomevents error | Misko Hevery | |
| Closes #3459 | |||
| 2013-08-08 | docs(compile/notassign): description for compile/notassign error | Misko Hevery | |
| Closes #3459 | |||
| 2013-08-08 | docs(compile/multidir): description for compile/multidir error | Misko Hevery | |
| Closes #3459 | |||
| 2013-08-08 | docs(minErr): add controller/noscp docs | Igor Minar | |
| 2013-08-08 | docs(minErr): add rootScope/inprog docs | Igor Minar | |
| 2013-08-08 | docs(minErr): improve compiler/iscp | Igor Minar | |
