aboutsummaryrefslogtreecommitdiffstats
path: root/docs
AgeCommit message (Collapse)Author
2013-06-25fix(doc-gen): correctly transform index filesPete Bacon Darwin
Closes #3021
2013-06-25docs(guide/expression): remove reference to `NullPointerException`Domenic Denicola
2013-06-21fix(docs): set ng-app for editing with plunkerChirayu Krishnappa
Closes #3011
2013-06-20docs(cookbook/helloworld): display "World" if no name is enteredNimaVaziri
2013-06-19feat(jqLite): switch bind/unbind to more recent jQuery on/offMichał 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-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-18chore(ngdocs): change minimum search length requirementMatias Niemelä
2013-06-18chore(ngdocs): provide test code for lunr search in docsMatias Niemelä
2013-06-17feat(ngdocs): provide support for user to jump between different versions of ↵Matias Niemelä
the angularjs documentation
2013-06-17feat(ngdocs): support popover, foldouts and foldover annotationsMatias Niemelä
2013-06-17chore(ngdocs): allow user to press escape key to close docs searchMatias Niemelä
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-12chore(docs/writer): fix Windows path incompatibilitiesPete 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-10chore(docs): fix memory leak in example embed codeIgor 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-10docs(faq): update customink order infoIgor Minar
2013-06-06chore(ngdocs): expose showdown.js to docs pages and docs testing suiteMatias Niemelä
2013-06-06chore(ngdocs): setup bower as the package manager for the docs pagesMatias Niemelä
2013-06-06fix(ngdoc): fix the node warnings that show up during buildMatias Niemelä
2013-06-06chore(ngdoc): fix deprecated node api path.existsSync -> fs.existsSyncIgor Minar
2013-06-06refactor($route): pull $route and friends into angular-route.jsIgor 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-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-30chore(docs): add reference to the blogLucas Galfasó
Add a reference to the blog at the documentation.
2013-05-30feat(ngdocs): provide support for inline variable hintingMatias Niemelä
2013-05-23docs(guide/unit-testing): add expression exampleSiddique Hameed
* Improved developer guide, directive unit testing documentation code with scope expression * Removed documentation block with nothing on it
2013-05-22style(docs/template): add in missing semicolonsEddie Monge
Add semicolons where they were missing in the docs section per Google code styling guide. Closes #2736
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-21chore(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-20fix(ngdocs): fix gen_docs.shMatias Niemelä
2013-05-20fix(ngdocs): provide test code for syntax links in docs and fix the syntax ↵Matias Niemelä
directive for IE8
2013-05-20chore(ngdocs): move angular-bootstrap.js to be generated only inside the ↵Matias Niemelä
docs and remove from the build process
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