brettcannon
5ef9ed87d8
fix(docs): Capitalize Angular.
2012-07-19 15:23:21 -07:00
brettcannon
8c81a0f372
fix(docs): Fix a spelling mistake by replacing the noun with "it"
2012-07-19 15:04:29 -07:00
brettcannon
bde931afd5
fix(docs): "were" -> "where"
2012-07-19 11:28:19 -07:00
brettcannon
6553fe68d1
fix(docs): Capitalize "URL".
2012-07-19 11:05:38 -07:00
Chris Dawson
13b5fd1b9d
fix(docs): Fixed defer to timeout change in timer directive example
2012-07-19 10:04:22 -07:00
Chris Dawson
17209d5b4a
fix(docs): Spelling errors
2012-07-19 10:01:50 -07:00
brettcannon
6f9a5721bc
fic(docs): Consistently use __bold__ for things that must be done when moving the ng-controller declaration.
2012-07-19 09:57:58 -07:00
brettcannon
31c825607d
fix(docs): Tweak some grammar and add some links relating to DI.
2012-07-19 09:54:53 -07:00
brettcannon
ab6937e251
fix(docs): Capitalize "APIs"
2012-07-19 09:49:44 -07:00
brettcannon
fbfda241f6
fix(docs): Capitalize "Angular".
2012-07-19 09:35:43 -07:00
brettcannon
206371b737
fix(docs): Capitalize Angular.
2012-07-19 09:26:34 -07:00
brettcannon
b6b92bd866
fix(docs): Add a missing "the".
2012-07-19 09:09:52 -07:00
brettcannon
79f2d843a8
fix(docs): ngRepeater isn't a thing, ngRepeat is
2012-07-19 09:04:59 -07:00
brettcannon
64a9cd8f4f
fix(docs): Remove a redundant "in".
2012-07-19 09:02:04 -07:00
brettcannon
7f6e1326f3
fix(docs): Grammatical fix
2012-07-18 15:48:08 -07:00
brettcannon
1fd2b3d402
fix(docs): Fixed some awkward wording
2012-07-18 15:42:29 -07:00
brettcannon
d56d69cc83
fix(docs): Tweak formatting and wording of a list
2012-07-18 15:20:38 -07:00
brettcannon
01e726b2fa
fix(docs): Don't want the present participle of "is"
2012-07-18 15:15:09 -07:00
brettcannon
1613621645
fix(docs): Adjectve accidentally made into an adverb
2012-07-18 12:16:14 -07:00
brettcannon
92a3d28218
fix(docs): Minor grammatical fix
2012-07-18 11:52:57 -07:00
Rishabh Rao
4c58501956
fix(docs): Fixed typo: changed ngRepeate to ngRepeat.
2012-07-16 12:33:19 -07:00
Jamie Krug
c076fe08cf
fix(docs): Fix spelling, punctuation and grammatical errors on dev guide bootstrap page.
2012-07-16 12:10:43 -07:00
Jamie Krug
2473412ba5
fix(docs): Fix spelling, punctuation and grammatical errors on dev guide compiler page.
2012-07-16 12:10:42 -07:00
Jamie Krug
1f2d50000e
fix(docs): Fix spelling, punctuation and grammatical errors on dev guide overview page.
2012-07-16 12:10:33 -07:00
Kevin Old
5026315d6f
fix(docs): correct typo
2012-07-16 11:40:21 -07:00
Igor Minar
f0a090ddf2
fix(docs): correctly generate sitemap
2012-07-02 08:21:19 -07:00
Igor Minar
6d9313a68d
fix(docs): fix broken ng-docs specs
2012-07-02 08:21:19 -07:00
Misko Hevery
ad5d2f2991
fix(doc) firefox icon rendering
2012-06-15 10:40:25 -07:00
Igor Minar
9af7a9198e
fix($defer): remove deprecated $defer service
2012-06-12 01:09:07 -07:00
Igor Minar
d9ff5fd432
fix(docs): migrate from $defer to $timeout
2012-06-12 00:11:04 -07:00
Igor Minar
f16150d5f1
docs(*): simplify doc urls
...
we now have two types of namespaces:
- true namespace: angular.* - used for all global apis
- virtual namespace: ng.*, ngMock.*, ... - used for all DI modules
the virual namespaces have services under the second namespace level (e.g. ng.)
and filters and directives prefixed with filter: and directive: respectively
(e.g. ng.filter:orderBy, ng.directive:ngRepeat)
this simplifies urls and makes them a lot shorter while still avoiding name collisions
2012-06-12 00:10:18 -07:00
Igor Minar
5d70e4a89c
docs(*): fix various outdated docs and examples
...
Closes #1030
2012-06-10 09:01:42 -07:00
Igor Minar
b5bba65a93
docs($location): clarify the two-way data-binding note
...
Closes #1030
2012-06-09 06:57:55 -07:00
Misko Hevery
c3a41ff9fe
feat($compile): simplify isolate scope bindings
...
Changed the isolate scope binding options to:
- @attr - attribute binding (including interpolation)
- =model - by-directional model binding
- &expr - expression execution binding
This change simplifies the terminology as well as
number of choices available to the developer. It
also supports local name aliasing from the parent.
BREAKING CHANGE: isolate scope bindings definition has changed and
the inject option for the directive controller injection was removed.
To migrate the code follow the example below:
Before:
scope: {
myAttr: 'attribute',
myBind: 'bind',
myExpression: 'expression',
myEval: 'evaluate',
myAccessor: 'accessor'
}
After:
scope: {
myAttr: '@',
myBind: '@',
myExpression: '&',
// myEval - usually not useful, but in cases where the expression is assignable, you can use '='
myAccessor: '=' // in directive's template change myAccessor() to myAccessor
}
The removed `inject` wasn't generaly useful for directives so there should be no code using it.
2012-06-08 15:50:13 -07:00
unknown
a57141fd1d
docs(guide): correct couple of typos
2012-06-04 18:46:09 -07:00
Misko Hevery
ddefb42445
doc(app): switch to use $last on ng-repeat
2012-06-02 16:02:09 -07:00
Misko Hevery
676d6e0040
doc(app): remove un-needed file
2012-06-02 16:02:09 -07:00
Misko Hevery
8024a5742c
doc(NgModelController) add example and $render documentation
...
Closes#930
2012-06-02 16:02:09 -07:00
Misko Hevery
073e76f835
doc(guide): corrected examples
2012-06-02 16:02:09 -07:00
Misko Hevery
7019f142ab
merge cleanup
2012-06-02 16:02:09 -07:00
Misko Hevery
0532aabcf9
doc(guide): clean up broken links
2012-06-02 16:02:08 -07:00
Misko Hevery
f0be543614
doc(ngdoc): clean up doc generation and add missing documentation links
2012-06-02 16:02:08 -07:00
Misko Hevery
a3a37c2063
doc(compiler): rewrite
2012-06-02 16:02:08 -07:00
Misko Hevery
0f5259c5a2
docs(introduction): rename
2012-06-02 16:02:08 -07:00
Misko Hevery
321a4a6b1f
doc(i18n): rename
2012-06-02 16:02:08 -07:00
Misko Hevery
41d26db32c
docs(expression): rewrite
2012-06-02 16:02:08 -07:00
Misko Hevery
dd38ce6585
docs(scope): rewrite
2012-06-02 16:02:07 -07:00
Misko Hevery
2e90cdc3d4
docs(dependency injecton): rewrite
2012-06-02 16:02:05 -07:00
Misko Hevery
581f93ae56
docs(ngdocs): cleaned up directive titles
2012-06-02 16:02:05 -07:00
Misko Hevery
6933fb7924
docs(bootstrap): rewritten bootstrap guide
2012-06-02 16:02:05 -07:00