| Age | Commit message (Collapse) | Author |
|
Closes #4112
|
|
Closes #4104
|
|
Clean up confusing use of the term URL to refer to $location as well as 'URL in the browser'.
Closes #4103
|
|
Closes #4100
|
|
|
|
|
|
See the discussion at http://docs.angularjs.org/guide/dev_guide.services.understanding_services#comment-1002821035
Closes #4055
|
|
The de-ge locale does not exist
Closes #4053
|
|
|
|
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 #3836
|
|
|
|
Closes #3985
|
|
|
|
Closes #3972
|
|
Closes #3974
|
|
|
|
Closes #3930
|
|
Closes #3707
|
|
|
|
Closes #3718
|
|
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
|
|
Clear up confusion about module declaration when using manual bootstrap.
|
|
|
|
example applications
|
|
|
|
|
|
|
|
|
|
transitions/durations attached to it
Closes #3587
|
|
animations are used
ngAnimate causes a 1ms flicker on the screen when no CSS animations are present on the element.
The solution is to change $animate to only use $timeouts when a duration is found on the element
before the transition/keyframe animation takes over.
Closes #3613
|
|
This target was never un on our Jenkins CI. Some of the specs are using animation stuff, that IE does not support, so I'm disabling them.
|
|
correct the ordering and make gen-docs prepare the list of versions
during the build process
|
|
|
|
Currently, the documentation does a bad job of explaining the distinction between the services that it provides,
and the module itself. Furthermore, the instructions for using optional modules are inconsistent or missing.
This commit addresses the problem by ading a new `{@installModule foo}` annotation to the docs generator that
inlines the appropriate instructions based on the name of the module.
|
|
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."
|
|
|
|
Clarify the little snippet on dash vs camelCase html to directive naming pattern
Closes #3550
|
|
|
|
the <a> is incorrect.
there is no space between "a" and "href"
|
|
"Orthogonal" is a strange word for those without a mathematical/CS background. "Independent" is clearer.
Closes #3641
|
|
Removes whitespace before image tag as it caused it to be interpreted as a code block.
Closes #3668
|
|
Closes #3616
Closes #3675
|
|
|
|
|
|
GA is not needed during e2e tests, so I'm removing it to speed up the e2e test
suite.
See previous commits for more info.
|
|
code prettification is expensive and not needed for e2e tests, so I'm disabling
it to speed up the e2e test suite.
this is a temporary measure, see previous commit for more info.
|
|
lunr has been responsible for slowdown in our test suite by adding ~1sec per
end-to-end test.
(this is because it initializes the index when the app starts)
since out test suite primarily tests the examples, it's reasonable do disable
the search as a temporary meansure.
the real fix is to use protractor and extract all of the examples into
standalone apps which can be tested without bootstrapping the whole docs app.
|