| Age | Commit message (Collapse) | Author |
|
|
|
This CL also contains style fixes as the converted scripts caused jshint to complain.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
It is safer to use markdown style links and save jsdoc style links for
internal links and code references
|
|
Previous link url is no longer served, responds with bad link (error 404). This change corrects the
URL to point to section 5.5 of the draft. The old URL appears to have been removed from service in
2012.
Corrects the link to "History API"
Closes #6225
|
|
Replace "shold" to "should"
Closes #6216
|
|
|
|
Added a link to 10 reasons to use and online courses for Angular
Closes #6194
|
|
|
|
Closes #6207
|
|
Closes #6206
|
|
Signed-off-by: Caitlin Potter <caitpotter88@gmail.com>
Closes #6202
|
|
Update the Travis and Jenkins configs to run protractor tests on Safari and Firefox as well,
and make the Travis tests run output XML and turn off color.
Fix tests which were failing in Firefox due to clear() not working as expected.
Fix tests which were failing in Safari due to SafariDriver not understanding the minus key,
and disable tests which SafariDriver has no support for.
|
|
point to protractor
|
|
Fixing reference to ngClass documentation
Closes #6089
|
|
Replace {{}} to `{{}}` so that "{{}}" is rendered in the HTML page
Closes #5950
|
|
protractor
Thanks to jeffbcross, petebacondarwin, btford, jdeboer, tbosch for contributions!
Closes #6023
|
|
|
|
Closes #5884
|
|
|
|
Remove the second instance of the word "and" from the docs where it was duplicated.
|
|
The $log provider returns an object and not a function, so this example, which appears to be using
the $log provider, should call it as it would be called in a real-world application.
Closes #5875
|
|
Originally, this issue was regarding documenting `restrict: 'CM'` in the directive guide, but it
was pointed out that the restrict documentation is covered in the $compile documentation. Because of
this, a link was simply added to the $compile documentation.
However, the wording suggests that it's actually linking to the directive registration function, in
$compileProvider, so the docs will link there instead. There is a link only a paragraph below to the
$compile documentation, so this does not hurt.
Closes #5516
|
|
This always throws me off - I think it helps to make it clear that the class name is arbitrary, and
what matters is the .ng-etc classes.
Closes #5848
|
|
Code uses module names with '2' as suffix while the explanation used the module names without the
suffix. The diagram is correct but also does not suffix the module names.
Closes #5567
|
|
- referring to `=attr` rather than `=prop` is consistent with note under example with =customerInfo
- change `prop` to `attr` (basically `prop` refers to property in JS object, `attr` is for HTML tag)
- change the function name in description to match the name in code example
Closes #5786
|
|
|
|
|
|
|
|
|
|
HTML was mis-spelt as HMTL
|
|
|
|
Closes #5651
|
|
Right now, non-integers such as 'aawefwae' are valid.
This ensures that only integers are valid. Hopefully that makes the example more powerful.
Closes #5501
|
|
Closes #5499
|
|
Closes #5481
|
|
Closes #5441
|
|
Closes #5329
|
|
End 2 end tests wait for all `$timeout`s to be run before completing the test.
This was problematic where we were using timeouts that restarted themselves because
there would never be a point when all timeouts had completed, causing the tests to hang.
To fix this $timeout had been monkey-patched but this caused other issue itself.
Now that we have $interval we don't need to use $timeout handlers that re-trigger the $timeout
so we can ditch the monkey-patch.
This commit tidies up any examples that are using this approach and changes them to use $interval
instead.
Closes #5232
|
|
|
|
jQuery's elem.html('') is way slower than elem.empty(). As clearing
element contents happens quite often in certain scenarios, switching
to using .empty() provides a significant performance boost when using
Angular with jQuery.
Closes #4457
|
|
Closes #5280
|
|
Just my first pass at a more readable format of the guide index.
Note: the styles apply to all content in the docs, not just the guide
index. This is intentional and I feel that the result is positive.
|
|
Closes #5200
|
|
Closes #5116
|