| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-06-13 | docs(tutorial/step_05): apply more useful link to services | Ore Landau | |
| 2013-06-12 | docs(FormController): add methods for FormController | Dean Sofer | |
| 2013-06-12 | docs(ngModelController): improve $parsers/$formatters with example | Dean Peterson | |
| 2013-06-12 | docs(ngClass): fix minor typo. | Ore Landau | |
| 2013-06-12 | docs(guide/bootstrap): clarify manual bootstrapping | Pete Bacon Darwin | |
| 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-11 | docs(ngRoute): clarify when gets updated | Pete Bacon Darwin | |
| 2013-06-11 | docs(ngSubmit): clarify that there must be no `action` attribute | Pete Bacon Darwin | |
| 2013-06-11 | fix(ngRepeat): support growing over multi-element groups | Misko Hevery | |
| 2013-06-11 | fix($compile): support multi-element group over text nodes | Misko Hevery | |
| 2013-06-10 | chore(ngdocs): add angular-route.js to karma docs suite | Matias Niemelä | |
| 2013-06-10 | fix(angularFiles): ensure only karma-docs.js tests the component-spec files | Matias Niemelä | |
| 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-07 | chore(.gitignore): fix patterns | Igor Minar | |
| make patterns more strict so we don't accidentaly match stuff deeply nested in the codebase. | |||
| 2013-06-07 | chore(Gruntfile): ensure bower command is run under node | Pete Bacon Darwin | |
| 2013-06-06 | chore(closure-compiler): upgrade to version 20130603 | Igor Minar | |
| 2013-06-06 | chore(closure-compiler): use bower to fetch closure compiler | Igor Minar | |
| this replaces the stale NPM dependency | |||
| 2013-06-06 | chore(ngdocs): expose showdown.js to docs pages and docs testing suite | Matias Niemelä | |
| 2013-06-06 | chore(ngdocs): setup karma-docs testing suite to test docs components | Matias Niemelä | |
| 2013-06-06 | chore(ngdocs): setup bower as the package manager for the docs pages | Matias Niemelä | |
| 2013-06-06 | chore(ngdocs): replace google closure library with a NPM module | Matias Niemelä | |
| 2013-06-06 | fix(ngdoc): fix the node warnings that show up during build | Matias Niemelä | |
| 2013-06-06 | feat(ngdocs): provide documentation for the new ngRepeat repeater syntax | Matias Niemelä | |
| 2013-06-06 | chore(AngularPublic): remove angular.noConflict feature | Matias Niemelä | |
| 2013-06-06 | chore(ngdoc): fix deprecated node api path.existsSync -> fs.existsSync | Igor Minar | |
| 2013-06-06 | chore(grunt): add autotest:modules target | 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(ngTransclude): fix outdated scope definition in example | Marcin Wosinek | |
| 2013-06-04 | docs(guide/unit-testing): fix controller test example | Pete Bacon Darwin | |
| 2013-06-04 | docs(Angular.js): clarify ngApp usage | Robbie Ferrero | |
| 2013-06-04 | docs(angular-mocks): fix typo in example | Robb Shecter | |
| fromJSON() should be fromJson() | |||
| 2013-06-04 | docs(sanitize): add @description section | Alan Klement | |
| 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(ngClass): clarify the use of object map | Luc Morin | |
| 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(validate-commit-msg): fix incorrect comment | Jens Rantil | |
| If you `cd` into the repo, `validate-commit-msg.js` will be in the root of it. | |||
| 2013-06-04 | docs(input): provide explanation of how ngModel will affect the local scope | Luc Morin | |
| 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-31 | fix(ngController): fix indentation bug which causes example to mess up | Matias Niemelä | |
| 2013-05-30 | chore(docs): add reference to the blog | Lucas Galfasó | |
| Add a reference to the blog at the documentation. | |||
| 2013-05-30 | fix(jqLite): Added optional name arg in removeData | Jeff Cross | |
| jQuery's API for removeData allows a second 'name' argument to just remove the property by that name from an element's data. The absence of this argument was causing some features not to work correctly when combining multiple directives, such as ng-click, ng-show, and ng-animate. | |||
| 2013-05-30 | fix($animator): ensure $animator calculates the highest duration + delay for ↵ | Matias Niemelä | |
| and transitions and animations together | |||
| 2013-05-30 | docs(): Rectify animator.animate documentation | Gias Kay Lee | |
