aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2013-09-13docs($http): explain why $http may not make the request immediatelyDang Nguyen Anh Khoa
I came across this issue today and after researching has found out this thread on so: http://stackoverflow.com/questions/17039998/angular-not-making-http-requests-immediately. It took me quite sometimes to figure out this so I hope the addition in documentation could save somebody else some times and frustration.
2013-09-13fix(ngOptions): ignore object properties which start with $Gowtam Lal
2013-09-13docs(guide/e2e_testing): clarify that .enter searches by ng-modelbrakon
2013-09-11test($browser): correct false positive in ApplicationSpec.jsWoody Peterson
Previously, the check that Application should return a new $window and $document had the arguments reversed in the first call to navigateTo; thus, the subsequent check of inequality of $window and $document in the next navigateTo call would always pass. This corrects the argument order, which makes this test not succeptible to false positives.
2013-09-11docs(tutorial/step-10): fix incorrect link to step-8 testscjmling
Closes #3972
2013-09-11docs(ngModel): provide link for best practices.Paxton Hare
Closes #3973
2013-09-11docs(guide/concepts): remove div-clear-tags that break the formattingRandi Hillerøe
Closes #3974
2013-09-11docs(Attributes): add missing documentation for $observe methodButch Peters
- Add proper ngdoc annotations to existing $observe documentation - Add link to directive guide for usage example of $observe - Add note about $observe function parameter signature Closes #3957
2013-09-10docs($q): clarify what happens when rejectednaorye
Closes #3943
2013-09-10docs(angular.copy): clarify corner casesjakub-bochenski
The behaviour when null or undefined was passed was not clear. The exception thrown when source == destination was not documented. Closes #3946
2013-09-09docs(forms.ngdoc): fix spacing in exampleAnthony Tran
Closes #3930
2013-09-09docs(README): add dashboard linkRichard
Closes #3934
2013-09-09docs(mock.inject): fix typoPete Bacon Darwin
2013-09-05docs(mock.inject): document underscore wrapping syntaxJasonM23
Add a summary describing the ignored underscore syntax sugar helper, with a simple use case example. Closes #3621
2013-09-05docs(tutorial): fix markup for tutorial_03.png diagramAlexander Kaidalov
Closes #3707
2013-09-05docs(tutorial): fix markup for tutorial_04.png diagramAlexander Kaidalov
2013-09-05docs(tutorial): clarify use of inject() in step 9Pete Bacon Darwin
Closes #3718
2013-09-05docs(booleanAttrs): improve parameter docs for boolean attributesPete Bacon Darwin
2013-09-05docs(css_styling_guide): add ng-scope and ng-binding classesNick Donohue
I noticed angular was adding these css classes to elements and believe they should be listed in the documentation at this page. The ng-scope class is mentioned in the developer guide, hence the link there, and the ng-binding class is not mentioned anywhere else in the documentation or the guide that I found. Closes #3728
2013-09-05docs(angular.bootstrap): clarify modules parameterPete Bacon Darwin
It was not clear what you could pass to specify modules to load in the `module` parameter of this function. The `modules` parameter takes an array. The main case is to provide a String, which is the name of a "predefined" angular module. The side cases are to provide a Function (or an annotated function in the form of an Array), which will be invoked by the injector as a run block. It is not possible to "define" new modules via this parameter. Closes #3692
2013-09-05docs(bootstrap.ngdoc): clarify bootstrap exampleCalvin Fernandez
Clear up confusion about module declaration when using manual bootstrap.
2013-09-05docs(): parameter for html5Mode is booleanPete Bacon Darwin
2013-09-05docs($anchorScroll): provide an example of basic usage.Ben Lesh
Per a request made by Peter Bacon Darwin here: http://www.benlesh.com/2013/02/angular-js-scrolling-to-element-by-id.html?showComment=1370941217879#c8718313084813008967
2013-09-02fix($http): allow empty responses to be cachedjankuca
Closes #3809
2013-08-30chore(build): add jenkins_build.sh fileIgor Minar
cherry-pick from the master branch with the promises-aplus tests removed.
2013-08-28chore: upgrade grunt packages to match masterBrian Ford
2013-08-28docs(guide): update description of $inject mechanism to be a little clearerphanboy4
2013-08-22docs(overview): improve grammarBrian Ford
2013-08-22chore(release): start new 1.0.9 iterationIgor Minar
Marc is working on the code name :-)
2013-08-22chore(release): cut the 1.0.8 bubble-burst releasev1.0.8Igor Minar
2013-08-22chore(grunt): ensure that grunt uses zip for compressionIgor Minar
2013-08-22docs(changelog): release notes for 1.0.8 bubble-burstIgor Minar
2013-08-22docs(CHANGELOG): update changelogIgor Minar
2013-08-22docs(CHANGELOG): release notes for 1.2.0-rc1 spooky-giraffeIgor Minar
2013-08-22docs(guide): warn about module creation versus retrievalghodss
Updated Module documentation to include the suggestion of the top-rated comment: "This documentation should warn that "angular.module('myModule', [])" always creates a new module, but "angular.module('myModule')" always retrieves an existing reference."
2013-08-22revert: feat(ngForm): Supports expression in form namesIgor Minar
This reverts commit 4407e81c618d42c70e8cfca4f52dfc4a669b5c68. No features or breaking changes in the stable branch please.
2013-08-22chore(changelog.js): pickup breaking changes f/ chore/refactor commitsIgor Minar
2013-08-22docs(guide): grammatical corrections to Form and Control definitionsMarcel Morgan
2013-08-21revert: fix($compile): correct controller instantiation...Igor Minar
fix($compile): correct controller for async directives This reverts commit 51d32243fe8cfbdcd1b647950d4e99ed57677558 as well as commit 9c51d503188efae14b81bd4d6dd7d5a3363f050f Changing ordering of events in stable branch is not a good idea.
2013-08-21revert: fix($compile): always instantiate controllers...Igor Minar
fix($compile): always instantiate controllers in parent->child order This reverts commit 683fd713c41eaf5da8bfbf53b574e0176c18c518. It turns out that there is some existing code that relies on the incorrect timing. Rather than breaking these apps that depend on stable releases, we are going to keep this changeo only in master and the apps will need to migrate to the correc timing during the 1.2 upgrade.
2013-08-20fix(package.json): add a repository fieldMichał Gołębiowski
The `npm install` command complains about the missing repository field. Closes #3674
2013-08-20fix($compile): correct controller instantiation for async directivesChirayu Krishnappa
This fixes regression introduced by #3514 (9c51d503) - this commit is being reverted here and a better fix is included. The regression caused the controller to be instantiated before the isolate scope was initialized. Closes #3493 Closes #3482 Closes #3537 Closes #3540
2013-08-16style(docs): replace CRLF by LF in svg header logoReto Aebersold
2013-08-15fix(grunt): fix regex in grunt util to handle pre-release versionsBrian Ford
NOTE: this also includes a temporary work-around for Bower
2013-08-15docs($cookies): add info about angular-cookies.jsRob Dodson
per the [top comment here](http://docs.angularjs.org/api/ngCookies.$cookies#comment-912064775) updating documentation so it matches [$resource](http://docs.angularjs.org/api/ngResource.$resource) and instructs the user to include the `angular-cookies.js` and load `ngCookies`. Closes #3607
2013-08-14fix(orderBy): remove redundant if statementItsLeeOwen
Removed unnecessary additional conditional statement.
2013-08-14chore: fix Travis buildVojta Jina
Specify hostname/port for connect server to avoid https://github.com/joyent/libuv/issues/826 Conflicts: Gruntfile.js
2013-08-14chore: disable npm install on TravisVojta Jina
Grunt is configured to run `npm install` before every task. That is convenient when switching a branch for example. On Travis, this makes no sense and is causing tons of NPM warnings (eg. packages not defining repository field etc).
2013-08-14chore: update Node.js on TravisVojta Jina
2013-08-14chore: update Karma to v0.10Vojta Jina