| Age | Commit message (Collapse) | Author |
|
|
|
Closes #4674
|
|
Add note that `input()` fn matches ng-model instead of HTML name attribute.
About five users on forums were snagged by this assumption:
http://docs.angularjs.org/guide/dev_guide.e2e-testing#comment-898079915
Closes #4655
|
|
The escaping of the colon in the example CSS is incorrect.
Replace `ng\\:view {` with `ng\:view {`
Closes #4570
|
|
Closes #4601
|
|
Closes #4668
|
|
Closes #4667
|
|
Add a note to warn people starting new projects about Protractor replacing the
current ngScenario way of doing E2E testing.
Closes #4644
|
|
Closes #4647
|
|
Closes #4639
|
|
The BabyCtrl was a bit confusing and GrandChildCtrl seems to make more sense
with the whole "scope inheritance" concept.
Closes #4634
|
|
|
|
Closes #4615
|
|
Closes #4578
|
|
Change landing page to include a set of curated links with subject
headings as a guide through Angular's docs and other resources.
Closes #4470
|
|
The removed block is repeated from the unit-testing guide and appears
in an awkward place in this text.
Closes #4456
|
|
The example that demonstrates how to parse expressions can fail if you
pass in the same expression twice. By using "track by $index" we can
fix this.
Closes #4472
|
|
|
|
This also contains some whitespace corrections by my editor.
|
|
Closes #4405
|
|
Closes #4386
|
|
Remove mention of global controller functions
Convert larger examples to runnable demos
Remove mention of pre-1.0 controllers, in particular discussion of
controller inheritance.
TODO: Probably could do with updating to explain the "controller as" syntax
at some point.
Closes: #4373
|
|
Use the recommended `module.controller` syntax rather than global
functions to define controllers in the examples.
|
|
|
|
The use of 'angular' as sample text is confusing to the newbie in that they are forced
to confirm that the text 'angular' is not a keyword or otherwise referring to a system
component. This is changed to a more obvious sample text.
The most common form of `ngBind` is moved to the top of the list.
Closes #4237
|
|
Closes #4241
|
|
The demo of the hash-bang vs html5-mode deep links was broken since the introduction
of a check for previously bootstrapped elements. See this commit: 3ee744cc63
We fix this problem by applying a null for the injector value of the element of the
at the root of the sub-app.
It also turns out that it was not necessary, and if fact broke the demo, to replace
the $document service for the sub-app. This was because the $compile service calls
`$document.createElement()`, which doesn't exist on a `div`.
Finally, the bootstrap CSS was limiting the width of the ngAddress bar input box,
which made it difficult to see the changing URLs.
|
|
The host.com links on this documentation page took you to an ad page of dubious content.
Now changed to example.com, in accordance with RFC 2606
Closes #4206
|
|
Previous version stated `replace:false` will append template to element.
Improve description to accurately state that template will _replace_ the
contents of the current element.
Closes #2235, #4166
|
|
Closes #4188
|
|
This is specified for input fields, but not for selects. This change specifies it also for select().
|
|
|
|
|
|
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
|
|
|
|
Closes #3985
|
|
|
|
Closes #3974
|
|
Closes #3930
|
|
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.
|
|
|
|
|