aboutsummaryrefslogtreecommitdiffstats
path: root/docs
AgeCommit message (Collapse)Author
2013-06-27docs(guide/e2e-testing): clarify description of input(name) selectorAdam
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-27docs(tutorial): add experiment showing reverse sortNelson Blaha
2013-06-25docs(guide/controller): fix an error in the scope inheritance exampleJeffrey 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-25docs(guide/expression): remove reference to `NullPointerException`Domenic Denicola
2013-06-20docs(cookbook/helloworld): display "World" if no name is enteredNimaVaziri
2013-06-19docs(directive): fix typosarkasm
2013-06-18docs(tutorial): add missing 'node' command and <code> tagsgdi2290
2013-06-18docs(tutorial/step_07): add commas make tutorial read more clearlyJohn Bohn
2013-06-13docs(guide/di): fix headings hierarchyOre Landau
2013-06-13docs(guide/e2e-testing): fix verb tenseJad Naous
2013-06-13docs(tutorial/step_05): apply more useful link to servicesOre Landau
2013-06-12docs(guide/bootstrap): clarify manual bootstrappingPete Bacon Darwin
2013-06-10docs(faq): update customink order infoIgor Minar
2013-06-04docs(guide/unit-testing): fix typoJared Forsyth
2013-06-04docs(guide/injecting_controllers): add a hint in exampleJared Forsyth
Add a hint to tell the user that they need to click 3 times before an alert is shown.
2013-06-04docs(guide/unit-testing): fix controller test examplePete Bacon Darwin
2013-06-04docs(index): make menu links relativeSiddique 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-04docs(guide/concepts): add comment as a type of directiveEhsan Ghandhari
2013-06-04docs(guide/understanding_model): improve example consistencyRobb Shecter
2013-06-04docs(guide/compiler): fix some minor language errorsManuel Kiessling
2013-06-04docs(guide/di): fix some small grammatical issuesAlex Young
2013-06-04docs(guide): format snippets of code in plain textEduardo Garcia
2013-06-04docs(overview.ngdoc): clarify wordingadamshaylor
2013-05-22style(docs/template): add in missing semicolonsEddie Monge
2013-05-22docs(guide/directive): clarify directive priorityJens Rantil
Fixes #2644.
2013-05-21docs(tutorial): fix the float issue with the improve docs buttonMatias Niemelä
2013-05-21docs(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-21doc($compile): clarify compile function return valueJens Rantil
If a compile function (within a directive) returns a function, it is a post-link function. Closes: #2713
2013-05-21docs(guide/type): remove empty "Type" page in guideJens Rantil
Closes #1316
2013-05-20chore(package.json): kill version.yaml in favor of package.jsonIgor Minar
all versioning info is now in package.json and that's where the build scripts read it from
2013-05-20doc(guide/compiler): fix grammatical errorDavid Holmes
"The compilation process happens into two phases." should be "The compilation process happens in two phases."
2013-05-18docs(guide::testing): fix link to angular-seedPete Bacon Darwin
2013-05-18docs(guide): add API documentation for ngScenario matchersBen Ripkens
Matchers are briefly mentioned in the e2e test guide, but there is no documentation for the available matchers.
2013-05-18docs(tutorial): update test config file nameAndrew Vida
2013-05-17doc(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-16doc(guide): add links to angular-seed examplesMatt Haggard
The examples in the angular-seed project are better than nothing, which is what we currently have here!
2013-05-15docs(guide:understanding_controllers): remove outdated infojamesBrennan
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-10docs(guide): fix a typoveselinn
2013-05-10docs(guide): fix typo on model nameAlfred Nutile
2013-05-09docs(tutorial): add comment about injection annotationPete Bacon Darwin
Closes: #1163
2013-05-09chore(docs): use done() in gen-docs.jsIgor Minar
2013-04-30docs(guide:directive): add directive controller usageChris Nicola
Specifically adding a directive controller to the example definition and how to use declare injectables to avoid minification errors.
2013-04-29feat(ngdocs): support for HTML table generation from docs codeMatias Niemelä
2013-04-28docs(contribute): add Java as dependencyAnton
Current build process leverages closure jar for javascript minification. If Java is not installed and included in the PATH the build will fail.
2013-04-24docs(di): fix typos and grammarJeff Pickelman
2013-04-23docs(guide:unit-testing): add an example unit test for directivesTimothy Ahong
2013-04-22docs(compiler): don't drag selected contentPete Bacon Darwin
In the example with draggable, the mouseDown handler needs to start with an event.preventDefault(). Otherwise the following bug occurs: 1) Select the text of the draggable span by clicking outside the span and dragging the mouse to the left or right through the span. Release the mouse button. 2) Now click on the span's inner text, and start to Drag it. The browser's default functionality that drags highlighted text so that it can be pasted into something else (say a document in a text editor) is invoked. 3) Release the mouse button. Now suddenly, you'll be dragging the span. But you won't be able to place it down on the page. It'll just follow the mouse around until the page is refreshed. Closes: #2465
2013-04-22docs(compiler): fix variable scope in drag sampleKeir Mierle
Note that without this fix, if you add a second draggable element, the two instances clobber each other since there is only one set of startx/starty/x/y variables. Here is an example: http://plnkr.co/edit/aGrLXcIo2SuaePuAdfmQ?p=preview. On the surface it looks like it would be fine because you only have one mouse but in practice the start position jumps when you start dragging. Here it is fixed: http://plnkr.co/edit/VuvPasuumtCeiVRisYKQ?p=preview
2013-04-22docs(forms): fix formattingKeir Mierle
2013-04-22docs(forms): fix typoRon Yang