aboutsummaryrefslogtreecommitdiffstats
path: root/docs
AgeCommit message (Collapse)Author
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
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-16chore(docs): fix syntax error in docs.cssIgor Minar
2013-05-16feat(ngdocs): Add FullText search to replace Google search in docsMatias Niemelä
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-13feat(ngdocs): external links to github, plunkr and jsfiddle available for ↵Matias Niemelä
code examples
2013-05-13chore(ngdocs): update to new version of FontAwesomeMatias Niemelä
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-08chore(ngAnimate): CSS classes X-setup/X-start -> X/X-activeMatias 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-08feat(ngdocs): add variable type hinting with colorsMatias Niemelä
2013-05-08chore(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