| Age | Commit message (Collapse) | Author | 
 | 
 | 
 | 
When using Angular in the root of a domain with HTML5 URLs
where there are links to external paths within the same directory,
the `otherwise` route handler will catch these external files.
This can be fixed by prefixing '.' onto the links to URLs that should
be handled by angular routing.
Original Issue: #3520
Example of Fix: http://fiddle.jshell.net/fgHf6/3/
Closes #3555
 | 
 | 
The existing documentation for this step could have people find themselves
unable to run the `e2e-test.sh` script. This note added regarding
`karma-ng-scenario` will minimize their confusion and allow people to run
the script.
Closes #4033
 | 
 | 
Closes #3840
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
Closes #3841
 | 
 | 
Closes #3836
 | 
 | 
Closes #3838
 | 
 | 
- Add missing words.
- Simplify text.
 | 
 | 
- Add missing word 'directive'.
- Add missing word 'an'.
 | 
 | 
 | 
 | 
 | 
 | 
Closes #3985
 | 
 | 
The first parameter in $routeChangeError is the event object.
Closes #3986
 | 
 | 
Closes #3993
 | 
 | 
 | 
 | 
 | 
 | 
Closes #3996
 | 
 | 
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.
 | 
 | 
 | 
 | 
 | 
 | 
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.
 | 
 | 
According to http://validator.w3.org/ , <!--> is not a valid comment
and neither is any comment containing the -- substring.
 | 
 | 
Closes #3972
 | 
 | 
Closes #3973
 | 
 | 
Closes #3974
 | 
 | 
Some typos fixed and grammar improved:
- withing -> within
- life-cycle -> life cycle
- extraneous spaces
- grammar mistakes
- missing commas
- reworded unclear statements
Closes #3920
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
- 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
 | 
 | 
Closes #3943
 | 
 | 
The behaviour when null or undefined was passed was not clear.
The exception thrown when source == destination was not documented.
Closes #3946
 | 
 | 
Closes #3930
 | 
 | 
Closes #3934
 | 
 | 
 | 
 | 
Firefox 23 has deprecated the use of createEvent for transition and
animation events.  We must now use `new TransitionEvent()` and
`new AnimationEvent()` if they are available.
But of course IE doesn't support this format correctly so we must wrap
the attempt in a try block and revert to document.createEvent if necessary..
 | 
 | 
onAnimationProgress now checks the event's elapsedTime property before
checking the originalEvent.elapsedTime property.
Use browserTrigger with elapsedTime parameter to trigger animation events
 | 
 | 
BREAKING CHANGE: browserTrigger now uses an eventData object instead of direct parameters for mouse events.
To migrate, place the `keys`,`x` and `y` parameters inside of an object and place that as the third parameter
for the browserTrigger function.
 | 
 | 
$timeouts to track ongoing animations
Closes #3629
Closes #3874
 | 
 | 
Add a summary describing the ignored underscore syntax sugar helper,
with a simple use case example.
Closes #3621
 | 
 | 
Closes #3707
 | 
 | 
 | 
 | 
Closes #3718
 | 
 | 
Closes #3724
 | 
 | 
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
 | 
 | 
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
 |