| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-07-14 | docs(di): promote registering controllers on modules | sdesmond | |
| 2013-07-12 | chore(ngdoc): wrap all pages inside of a container tag for easy styling | Matias Niemelä | |
| 2013-07-10 | docs(guide): clarify example | sdesmond | |
| 2013-07-10 | docs(guide): example filter does not conditionally assign a color | sdesmond | |
| 2013-07-10 | docs(guide/di): fix typo | Robert Fauver | |
| 2013-07-10 | docs(contribute): improve git instructions | Tay Ray Chuan | |
| 2013-07-10 | docs(overview): fix typo | Lefteris Paraskevas | |
| Removed repeated "the" in the sentence: The input invalidates itself by turning red when you enter invalid data or leave "the" the input fields blank (Line 137). | |||
| 2013-07-07 | docs(guide/e2e-testing): fix typos | tgkokk | |
| 2013-07-04 | docs(guide/directive): make directive controller minification-safe | Andrew O'Brien | |
| It is best to emphasize that the "controller" property needs to be min safe Closes #3125 | |||
| 2013-07-02 | docs(tutorial/step9): formatted Unicode character line | exex zian | |
| Add tick and cross mark corresponding to their respective unicodes. | |||
| 2013-07-02 | docs(guide/location): fix example code - `hashPrefix` is a method | Niall Smart | |
| 2013-06-28 | docs(misc/faq): remove obsolte t-shirt instructions | Igor Minar | |
| 2013-06-27 | docs(guide/e2e-testing): clarify description of input(name) selector | Adam | |
| The description of the input selector made it seem that you were selecting an input element based upon it's name attribute. In reality, you are selecting an element by the string in the ng-model attribute. | |||
| 2013-06-27 | docs(tutorial): add experiment showing reverse sort | Nelson Blaha | |
| 2013-06-25 | docs(guide/controller): fix an error in the scope inheritance example | Jeffrey Palmer | |
| The chained scope creation example at the bottom of this document was using the childCtrl to create the babyScope, instead of the childScope. | |||
| 2013-06-25 | docs(guide/expression): remove reference to `NullPointerException` | Domenic Denicola | |
| 2013-06-20 | docs(cookbook/helloworld): display "World" if no name is entered | NimaVaziri | |
| 2013-06-19 | feat(jqLite): switch bind/unbind to more recent jQuery on/off | Michał Gołębiowski | |
| jQuery switched to a completely new event binding implementation as of 1.7.0, centering around on/off methods instead of previous bind/unbind. This patch makes jqLite match this implementation while still supporting previous bind/unbind methods. | |||
| 2013-06-19 | docs(directive): fix typo | sarkasm | |
| 2013-06-18 | docs(tutorial): add missing 'node' command and <code> tags | gdi2290 | |
| 2013-06-18 | docs(tutorial/step_07): add commas make tutorial read more clearly | John Bohn | |
| 2013-06-17 | feat(ngdocs): support popover, foldouts and foldover annotations | Matias Niemelä | |
| 2013-06-13 | docs(guide/di): fix headings hierarchy | Ore Landau | |
| 2013-06-13 | docs(guide/e2e-testing): fix verb tense | Jad Naous | |
| 2013-06-13 | docs(tutorial/step_05): apply more useful link to services | Ore Landau | |
| 2013-06-12 | docs(guide/bootstrap): clarify manual bootstrapping | Pete Bacon Darwin | |
| 2013-06-10 | docs(faq): update customink order info | Igor Minar | |
| 2013-06-06 | chore(ngdocs): setup bower as the package manager for the docs pages | Matias Niemelä | |
| 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(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-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 | 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-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 | 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! | |||
