Daniel Tse
da3dc5c5fe
docs(ngSwitch): fix minor typo
...
Closes #3993
2013-09-13 21:56:53 +01:00
Ben Tesser
1b5217b1d6
docs($browser): add jsdoc tags and fix typo
2013-09-13 21:37:14 +01:00
Dean Sofer
a53d197db3
docs(ngController): rephrased the description for clarity
2013-09-13 14:23:32 +01:00
Pete Bacon Darwin
2bb0e1a604
docs($http): add examples when calling $http outside $apply
...
Closes #3996
2013-09-13 14:17:47 +01:00
Dang Nguyen Anh Khoa
b15686cb79
docs($http): explain why $http may not make the request immediately
...
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-13 13:41:32 +01:00
Gowtam Lal
aa3c54c73f
fix(ngOptions): ignore object properties which start with $
2013-09-13 12:48:19 +01:00
brakon
f115751d54
docs(guide/e2e_testing): clarify that .enter searches by ng-model
2013-09-13 12:34:01 +01:00
Woody Peterson
64e7b7774e
test($browser): correct false positive in ApplicationSpec.js
...
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-11 22:19:24 +01:00
R. Merkert
21e9e8cf68
fix(ngSanitize): sanitizer should not accept <!--> as a valid comment
...
According to http://validator.w3.org/ , <!--> is not a valid comment
and neither is any comment containing the -- substring.
2013-09-11 22:40:09 +02:00
cjmling
bf512bb8ee
docs(tutorial/step-10): fix incorrect link to step-8 tests
...
Closes #3972
2013-09-11 20:45:24 +01:00
Paxton Hare
4a0f052242
docs(ngModel): provide link for best practices.
...
Closes #3973
2013-09-11 20:41:47 +01:00
Randi Hillerøe
c0886be148
docs(guide/concepts): remove div-clear-tags that break the formatting
...
Closes #3974
2013-09-11 20:37:34 +01:00
Sam Dornan
f86395aadf
docs(scope): clean up grammar and improve clarity
...
Some typos fixed and grammar improved:
- withing -> within
- life-cycle -> life cycle
- extraneous spaces
- grammar mistakes
- missing commas
- reworded unclear statements
Closes #3920
2013-09-11 13:56:56 +01:00
rodyhaddad
c0db11c607
style(ngForm): simplify restrict difference between form and ngForm
2013-09-11 13:28:17 +01:00
rodyhaddad
573d41b73c
docs(ngChange): remove wrong @restrict and add missing @param
2013-09-11 13:28:17 +01:00
rodyhaddad
d8987c170f
docs(ng.directives): add correct @restrict for all ng directives
2013-09-11 13:28:17 +01:00
rodyhaddad
1567440665
fix(ngdoc.js): update default directive restrict to 'A'
2013-09-11 13:28:17 +01:00
Butch Peters
26685782b3
docs(Attributes): add missing documentation for $observe method
...
- 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-11 12:11:38 +01:00
naorye
d63a50c3c3
docs($q): clarify what happens when rejected
...
Closes #3943
2013-09-10 22:06:04 +01:00
jakub-bochenski
ce351e69b1
docs(angular.copy): clarify corner cases
...
The behaviour when null or undefined was passed was not clear.
The exception thrown when source == destination was not documented.
Closes #3946
2013-09-10 22:03:08 +01:00
Anthony Tran
e4415d21d3
docs(forms.ngdoc): fix spacing in example
...
Closes #3930
2013-09-09 17:31:36 +01:00
Richard
79dc95cca6
docs(README): add dashboard link
...
Closes #3934
2013-09-09 12:26:22 +01:00
Pete Bacon Darwin
01a7ec0866
docs(mock.inject): fix typo
2013-09-09 08:44:12 +01:00
Pete Bacon Darwin
4def730de7
fix(browserTrigger): do not use document.createEvent method
...
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..
2013-09-07 07:30:57 +01:00
Matias Niemelä
d50ed6bfb8
fix(ngAnimate): check elapsedTime on current event
...
onAnimationProgress now checks the event's elapsedTime property before
checking the originalEvent.elapsedTime property.
Use browserTrigger with elapsedTime parameter to trigger animation events
2013-09-06 22:19:53 +01:00
Matias Niemelä
28f56a383e
fix(ngScenario): provide event parameters as object
...
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.
2013-09-06 17:00:37 -04:00
Matias Niemelä
32ad292611
refactor($animate): use CSS3 transition/animation events instead of $timeouts to track ongoing animations
...
Closes #3629
Closes #3874
2013-09-05 17:20:28 -04:00
JasonM23
e12e584ca8
docs(mock.inject): document underscore wrapping syntax
...
Add a summary describing the ignored underscore syntax sugar helper,
with a simple use case example.
Closes #3621
2013-09-05 14:34:40 +01:00
Alexander Kaidalov
42a5f1e99a
docs(tutorial): fix markup for tutorial_03.png diagram
...
Closes #3707
2013-09-05 14:11:21 +01:00
Alexander Kaidalov
2dd99c3f11
docs(tutorial): fix markup for tutorial_04.png diagram
2013-09-05 14:08:33 +01:00
Pete Bacon Darwin
c66ec5413c
docs(tutorial): clarify use of inject() in step 9
...
Closes #3718
2013-09-05 13:58:21 +01:00
James Daily
ae70ec7946
docs(booleanAttrs): improve parameter docs for boolean attributes
...
Closes #3724
2013-09-05 13:16:40 +01:00
Nick Donohue
62ea5c3a91
docs(css_styling_guide): add ng-scope and ng-binding classes
...
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-05 13:04:49 +01:00
Pete Bacon Darwin
327a78604a
docs(angular.bootstrap): clarify modules parameter
...
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-05 12:18:56 +01:00
Calvin Fernandez
d72fc304e0
docs(bootstrap.ngdoc): clarify bootstrap example
...
Clear up confusion about module declaration when using manual bootstrap.
2013-09-05 10:03:46 +01:00
Pete Bacon Darwin
21b1d22563
docs(): parameter for html5Mode is boolean
2013-09-05 10:01:50 +01:00
Ben Lesh
7ed5599a4b
docs($anchorScroll): provide an example of basic usage.
...
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-05 08:32:52 +01:00
Igor Minar
9d6d3969f1
docs(changelog): add a note about directives ending w/ -start and -end
...
Closes #3589
2013-09-05 01:31:34 +02:00
Brian Ford
cf0e6f3609
chore(release): add script for comparing master and stable branches
2013-09-05 01:15:36 +02:00
Igor Minar
81b0b6ea7b
chore(release): start 1.2.0-rc.3 ferocious-twitch iteration
2013-09-05 01:06:30 +02:00
Igor Minar
b6312af19f
docs(changelog): correct version number formats in changelog
2013-09-05 01:02:20 +02:00
Igor Minar
4ed47c4b12
chore(changelog): fix link to 1.2.0rc1
2013-09-05 01:00:17 +02:00
Igor Minar
80ea36256f
chore(ngdoc): fix version number parsing for doc version switcher
2013-09-04 22:56:11 +02:00
Igor Minar
c0ad2efb24
chore(release): cut 1.2.0-rc.2 barehand-atomsplitting release
2013-09-04 14:50:39 +02:00
Igor Minar
7b203fcff6
chore(grunt): support semver v2 version number format
...
previously we couldn't use it because of bower bugs
2013-09-04 14:50:39 +02:00
Igor Minar
9a7adb5455
chore(changelog): release notes for 1.2.0-rc.2 barehand-atomsplitting
2013-09-04 14:50:33 +02:00
Matias Niemelä
40c0220c47
fix(ngView): ensure ngClass works with together with ngView's transclusion behavior
...
Closes : #3727
2013-09-03 17:06:49 -07:00
Matias Niemelä
36ad40b18c
fix(ngAnimate): ensure that ngClass is always compiled before enter, leave and move animations
...
Closes #3727
Closes #3603
2013-09-03 17:06:49 -07:00
Matias Niemelä
4e15c4fb47
chore($rootScope): provide support to execute a function after the digest cycle is complete
2013-09-03 17:06:49 -07:00
Matias Niemelä
4382df03fa
fix(ngAnimate): cut down on extra $timeout calls
2013-09-03 17:06:49 -07:00