Igor Minar
797c99eabe
style(compileSpec): reorder and cleanup tests for $compile's transclusion feature
2013-10-28 01:11:17 -07:00
Pete Bacon Darwin
f3e3a65e29
docs(tutorial/index): fix git clone URL
...
Closes #4536
2013-10-27 21:54:51 +00:00
Jarrett Harris
c9a1df3ae9
docs($resource): fix typo
...
Closes #4670
2013-10-27 21:51:53 +00:00
netpoetica
c36e73de03
docs(guide/e2e-testing): callout ngmodel vs attr
...
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
2013-10-27 21:48:50 +00:00
Yuriy Bilogub
0429f6c7f5
docs(form): fix typo
...
Close #4671
2013-10-27 21:42:23 +00:00
Matias Niemelä
7c5e2511fd
chore(ngdocs): improve the docs search placeholder text
2013-10-27 21:30:54 +00:00
Leif Halvard Silli
8e5e641c0e
docs(guide/ie): fix typo
...
The escaping of the colon in the example CSS is incorrect.
Replace `ng\\:view {` with `ng\:view {`
Closes #4570
2013-10-27 21:27:49 +00:00
Valentyn Shybanov
dfccdd5b86
docs($location): document $location's events
...
Closes #1569
Closes #4446
2013-10-26 20:20:42 +01:00
gabriel-tessier
2cdb588b86
docs(guide/unit-testing): fix typo
...
Closes #4601
2013-10-26 20:15:50 +01:00
Pete Bacon Darwin
0bbb9e6258
docs(error/compile/tplrt): split long lines
2013-10-26 20:14:08 +01:00
gdennie
81d5bc860d
docs(error/compile/tplrt): clarify and grammar
...
Closes #4503
2013-10-26 20:14:08 +01:00
gdennie
9f2c8e935a
Clarification stemming from my own issues
...
It is instructive to give literal examples that reflect common (my) experience of the problem. :)
2013-10-26 20:09:09 +01:00
Pete Bacon Darwin
256fcb6884
docs(guide/compiler): clarify wording
...
Closes #4668
2013-10-26 20:07:00 +01:00
douglascalhoun
9453c61093
docs(guide/compiler): fix typo
...
Closes #4667
2013-10-26 19:58:05 +01:00
Preston Marshall
8b74738568
docs(guide/e2e-testing): add note about Protractor replacement
...
Add a note to warn people starting new projects about Protractor replacing the
current ngScenario way of doing E2E testing.
Closes #4644
2013-10-26 19:50:43 +01:00
@supercobra
96da4c14a7
docs(api/index): improve grammar
...
Closes #4648
2013-10-26 19:49:14 +01:00
Joe Grund
a4d3146ee9
docs(guide/directive): correct reference to myDir rather than ngBind
...
Closes #4647
2013-10-26 19:47:43 +01:00
George Bonner
d1a285e5d3
docs(guide/overview): improve grammar and readability
...
Closes #4639
2013-10-26 19:43:35 +01:00
Andrew Stuart
3cfe9575e9
docs(guide/understanding_controller): apply a more intuitive metaphor
...
The BabyCtrl was a bit confusing and GrandChildCtrl seems to make more sense
with the whole "scope inheritance" concept.
Closes #4634
2013-10-26 19:36:53 +01:00
Sean Fahey
05bc53d34d
docs(tutorial/step-11): add missing dependencies
...
Closes #4633
2013-10-26 19:33:16 +01:00
rjferguson21
28ab4b600a
docs($q): promises are no longer automatically unwrapped, by default
...
Although it is still possible to turn this on, the feature is deprecated and it is
best to remove this mention completely here.
Closes #4632
2013-10-26 19:29:27 +01:00
Pete Bacon Darwin
fca7bcaf43
docs(guide/directive): improve wording
2013-10-26 19:24:03 +01:00
thorn0
9f0d4085e7
docs(Angular.js): angular.equals calls itself recursively on objects
...
Closes #4622
2013-10-26 18:57:59 +01:00
mgechev
af34a4a2c0
docs(http): add missing brace in the 2nd interceptors example
...
Closes #4621
2013-10-26 18:53:41 +01:00
Joey Organisak
a1806bb460
docs(guide/directive): we are registering directives, not controllers
...
Closes #4615
2013-10-26 18:51:44 +01:00
David Bennett
31ebeeef7d
docs(ngForm): ensure correct attribute name in usage example
...
Closes #4611
2013-10-26 18:18:53 +01:00
David Bennett
e73bd40e85
docs(ngdoc.js): fix usage to display attributes as dash-case
...
Closes 4611
2013-10-26 18:17:54 +01:00
micole
ab3a3bf07a
docs(CONTRIBUTING.md): explain we cannot accept localization changes
...
Angular uses the I18N code from Closure library to generate its own localization
files. So there is no point submitting pull requests for these files, since
all changes would be lost when we next generate these files.
Closes #4610
2013-10-26 18:10:44 +01:00
Caio Cunha
0a84739776
docs($rootScope): added $eval locals parameter documentation
...
Added documentation for `locals` parameter of `$eval` method.
2013-10-25 23:53:15 -04:00
Igor Minar
79223eae50
fix($compile): attribute bindings should not break due to terminal directives
...
Recently we changed the priority of attribute interpolation directive to -100
to ensure that it executes early in the post linking phase. This causes issues
with when terminal directives are placed on elements with attribute bindings
because the terminal directive will usually have 0 or higher priority which
results in attr interpolation directive not being applied to the element.
To fix this issue I'm switching the priority back to 100 and making moving the
binding setup into the pre-linking function.
This means that:
- terminal directives with priority lower than 100 will not affect the attribute
binding
- if a directive wants to add or alter bindings it can do so in the pre-linking
phase, as long as the priority of this directive is more than 100
- all post-linking functions will execute after the attribute binding has been
set up
- all pre-linking functions with directive priority lower than 100 will execute
after the attribute bindings have been setup
BREAKING CHANGE: the attribute interpolation (binding) executes as a directive
with priority 100 and the binding is set up in the pre-linking phase. It used
to be that the priority was -100 in rc.2 (100 before rc.2) and that the binding
was setup in the post-linking phase.
Closes #4525
Closes #4528
Closes #4649
2013-10-25 14:19:58 -07:00
BrainCrumbz
9bf9c236cf
docs(compile): fix typo in 'Attributes' description
...
Closes #4589
2013-10-25 22:16:35 +01:00
Artemy Tregubenko
28bf357553
docs(guide/bootstrap): fix typo
...
Closes #4578
2013-10-25 22:11:08 +01:00
Jesse Palmer
34b1ceb42e
docs(tutorial/step-7): add doctype directive to example
...
Closes #4552
2013-10-25 22:09:38 +01:00
Balázs Suhajda
924abdae9f
docs(ngIf): fix typo
...
Closes #4512
2013-10-25 22:06:37 +01:00
DanS
c1e6afca11
docs(tutorial/step-2): add beforeEach to load module
...
The non-global controller test throws an error because the test does not
know about the module and so can not find the controller. This change
tells the test about the module so the test can find the controller.
Closes #4489
2013-10-25 22:03:10 +01:00
Arun Israel
280354c3f9
style(injectorSpec): fix typo in "it" description
...
Closes #4483
2013-10-25 21:52:46 +01:00
phamdt
4645c95702
docs(tutorial/step-5): fix wrong link to services guide
...
Closes #4477
2013-10-25 21:51:23 +01:00
Brad Green
c47a366bc4
docs(guide): rewrite guide landing page
...
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
2013-10-25 21:47:29 +01:00
Maarten Stolte
bb1395b452
docs(guide/e2e-testing): remove superfluous block of text
...
The removed block is repeated from the unit-testing guide and appears
in an awkward place in this text.
Closes #4456
2013-10-25 21:46:32 +01:00
mmieszek
e7177d3159
docs(guide/expression): fix duplicate key error in example
...
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
2013-10-25 21:46:31 +01:00
Pete Bacon Darwin
3e79c9b098
chore(grunt): add jshint to the test task
...
It is very easy to let jshint failures slip into the master build if
the jshint task is not part of the standard local grunt tasks.
2013-10-24 23:26:37 +01:00
Sam Dornan
e8a3569be6
docs(ngClass): fix typo
...
Closes #4471
2013-10-24 23:22:36 +01:00
Wesley Cho
459e85bfea
docs(rootScope): add example of using a listener function for $watch
...
Closes #4451
2013-10-24 23:13:30 +01:00
Igor Minar
1ae34aac81
chore(validate-commit-msg.js): increase the max line limit for commit messages from 70 to 100
2013-10-24 15:09:30 -07:00
Pete Bacon Darwin
82dec9b81e
style($route): fix line length
2013-10-24 22:36:40 +01:00
Matias Niemelä
76b628bcb3
fix($animate): skip unnecessary addClass/removeClass animations
...
Skip addClass animations if the element already contains the class that is being
added to element. Also skip removeClass animations if the element does not contain
the class that is being removed.
Closes #4401
Closes #2332
2013-10-24 17:35:57 -04:00
basarat
46d396df72
docs(ngModelController): $parent can help isolate scope directives
2013-10-24 22:26:39 +01:00
CloudDueling.com
db9c6a3528
docs(error/multidir): improve the sentence fluency
...
Closes #4449
2013-10-24 22:21:27 +01:00
Josh Schumacher
3b046c9eaa
docs($routeProvider): document route.resolve rejection
...
Add documentation that the $routeChangeError event is fired when a
route resolve promise is rejected
Closes #4447
2013-10-24 22:17:50 +01:00
wiebl
3c05e36e79
docs(select): fix typo
...
Closes #4433
2013-10-24 22:12:51 +01:00