| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-06-12 | chore(docs/writer): fix Windows path incompatibilities | Pete Bacon Darwin | |
| NodeJS on Windows uses back slashes for path separators. This difference can be mitigated by use of the nodeJS path library. In particular the `sep` property and the `dirname()`, `normalize()` and `join()` methods of this library. All path based arguments on exported functions need to be normalized and `join` and `sep` must be used instead of string manipulation to work with paths. | |||
| 2013-06-10 | chore(docs): fix memory leak in example embed code | Igor Minar | |
| we need to sever the link between the main root scope and the example root scope - this is only needed because we are embedding one app in the other. | |||
| 2013-06-10 | docs(faq): update customink order info | Igor Minar | |
| 2013-06-06 | chore(ngdocs): expose showdown.js to docs pages and docs testing suite | Matias Niemelä | |
| 2013-06-06 | chore(ngdocs): setup bower as the package manager for the docs pages | Matias Niemelä | |
| 2013-06-06 | fix(ngdoc): fix the node warnings that show up during build | Matias Niemelä | |
| 2013-06-06 | chore(ngdoc): fix deprecated node api path.existsSync -> fs.existsSync | Igor Minar | |
| 2013-06-06 | refactor($route): pull $route and friends into angular-route.js | Igor Minar | |
| $route, $routeParams and ngView have been pulled from core angular.js to angular-route.js/ngRoute module. This is was done to in order keep the core focused on most commonly used functionality and allow community routers to be freely used instead of $route service. There is no need to panic, angular-route will keep on being supported by the angular team. Note: I'm intentionally not fixing tutorial links. Tutorial will need bigger changes and those should be done when we update tutorial to 1.2. BREAKING CHANGE: applications that use $route will now need to load angular-route.js file and define dependency on ngRoute module. Before: ``` ... <script src="angular.js"></script> ... var myApp = angular.module('myApp', ['someOtherModule']); ... ``` After: ``` ... <script src="angular.js"></script> <script src="angular-route.js"></script> ... var myApp = angular.module('myApp', ['ngRoute', 'someOtherModule']); ... ``` Closes #2804 | |||
| 2013-06-04 | docs(guide/unit-testing): fix typo | Jared Forsyth | |
| 2013-06-04 | docs(guide/injecting_controllers): add a hint in example | Jared Forsyth | |
| Add a hint to tell the user that they need to click 3 times before an alert is shown. | |||
| 2013-06-04 | docs(guide/unit-testing): fix controller test example | Pete Bacon Darwin | |
| 2013-06-04 | docs(index): make menu links relative | Siddique Hameed | |
| Before the Develop drop down menu items were hard coded with an absolute url, which meant that they did not work correctly on local or ci server builds. | |||
| 2013-06-04 | docs(guide/concepts): add comment as a type of directive | Ehsan Ghandhari | |
| 2013-06-04 | docs(guide/understanding_model): improve example consistency | Robb Shecter | |
| 2013-06-04 | docs(guide/compiler): fix some minor language errors | Manuel Kiessling | |
| 2013-06-04 | docs(guide/di): fix some small grammatical issues | Alex Young | |
| 2013-06-04 | docs(guide): format snippets of code in plain text | Eduardo Garcia | |
| 2013-06-04 | docs(overview.ngdoc): clarify wording | adamshaylor | |
| 2013-05-30 | chore(docs): add reference to the blog | Lucas Galfasó | |
| Add a reference to the blog at the documentation. | |||
| 2013-05-30 | feat(ngdocs): provide support for inline variable hinting | Matias Niemelä | |
| 2013-05-23 | docs(guide/unit-testing): add expression example | Siddique Hameed | |
| * Improved developer guide, directive unit testing documentation code with scope expression * Removed documentation block with nothing on it | |||
| 2013-05-22 | style(docs/template): add in missing semicolons | Eddie Monge | |
| Add semicolons where they were missing in the docs section per Google code styling guide. Closes #2736 | |||
| 2013-05-22 | docs(guide/directive): clarify directive priority | Jens Rantil | |
| Fixes #2644. | |||
| 2013-05-21 | docs(tutorial): fix the float issue with the improve docs button | Matias Niemelä | |
| 2013-05-21 | docs(ngScenario): provide examples for element(...).query(fn) | Ben Ripkens | |
| element(selector, label).query(fn) is a very useful function, yet barely explained. The developer guide should show how this function can be used to conditionally execute behavior and assertions. | |||
| 2013-05-21 | doc($compile): clarify compile function return value | Jens Rantil | |
| If a compile function (within a directive) returns a function, it is a post-link function. Closes: #2713 | |||
| 2013-05-21 | docs(guide/type): remove empty "Type" page in guide | Jens Rantil | |
| Closes #1316 | |||
| 2013-05-21 | chore(package.json): kill version.yaml in favor of package.json | Igor Minar | |
| all versioning info is now in package.json and that's where the build scripts read it from | |||
| 2013-05-20 | fix(ngdocs): fix gen_docs.sh | Matias Niemelä | |
| 2013-05-20 | fix(ngdocs): provide test code for syntax links in docs and fix the syntax ↵ | Matias Niemelä | |
| directive for IE8 | |||
| 2013-05-20 | chore(ngdocs): move angular-bootstrap.js to be generated only inside the ↵ | Matias Niemelä | |
| docs and remove from the build process | |||
| 2013-05-20 | doc(guide/compiler): fix grammatical error | David Holmes | |
| "The compilation process happens into two phases." should be "The compilation process happens in two phases." | |||
| 2013-05-18 | docs(guide::testing): fix link to angular-seed | Pete Bacon Darwin | |
| 2013-05-18 | docs(guide): add API documentation for ngScenario matchers | Ben Ripkens | |
| Matchers are briefly mentioned in the e2e test guide, but there is no documentation for the available matchers. | |||
| 2013-05-18 | docs(tutorial): update test config file name | Andrew Vida | |
| 2013-05-17 | doc(guide:$location): fix example for two way databinding. | Jeremy Wilken | |
| When you are watching the $location.path(), it has to be wrapped in a function since it is not attached to the scope and if you pass a string to $scope.$watch it is evaluated against the $scope. | |||
| 2013-05-16 | chore(docs): fix syntax error in docs.css | Igor Minar | |
| 2013-05-16 | feat(ngdocs): Add FullText search to replace Google search in docs | Matias Niemelä | |
| 2013-05-16 | doc(guide): add links to angular-seed examples | Matt Haggard | |
| The examples in the angular-seed project are better than nothing, which is what we currently have here! | |||
| 2013-05-15 | docs(guide:understanding_controllers): remove outdated info | jamesBrennan | |
| Remove the outdated info in this document related to this API change https://github.com/angular/angular.js/blob/master/src/ng/rootScope.js#L166 | |||
| 2013-05-13 | feat(ngdocs): external links to github, plunkr and jsfiddle available for ↵ | Matias Niemelä | |
| code examples | |||
| 2013-05-13 | chore(ngdocs): update to new version of FontAwesome | Matias Niemelä | |
| 2013-05-10 | docs(guide): fix a typo | veselinn | |
| 2013-05-10 | docs(guide): fix typo on model name | Alfred Nutile | |
| 2013-05-09 | docs(tutorial): add comment about injection annotation | Pete Bacon Darwin | |
| Closes: #1163 | |||
| 2013-05-08 | chore(ngAnimate): CSS classes X-setup/X-start -> X/X-active | Matias Niemelä | |
| BREAKING CHANGE: css classes foo-setup/foo-start become foo/foo-active The CSS transition classes have changed suffixes. To migrate rename .foo-setup {...} to .foo {...} .foo-start {...} to .foo-active {...} or for type: enter, leave, move, show, hide .foo-type-setup {...} to .foo-type {...} .foo-type-start {...} to .foo-type-active {...} | |||
| 2013-05-08 | feat(ngdocs): add variable type hinting with colors | Matias Niemelä | |
| 2013-05-08 | chore(docs): use done() in gen-docs.js | Igor Minar | |
| 2013-04-30 | docs(guide:directive): add directive controller usage | Chris Nicola | |
| Specifically adding a directive controller to the example definition and how to use declare injectables to avoid minification errors. | |||
| 2013-04-29 | feat(ngdocs): support for HTML table generation from docs code | Matias Niemelä | |
