Miško Hevery
5418564f04
docs(directive): remove reference to old isolation syntax
2012-09-13 11:31:06 -07:00
Brian Ford
f2ebfa16b0
docs(guide): fix directive interpolation example code
...
Closes #1339
2012-09-11 16:12:41 -07:00
Misko Hevery
eb5fd400d3
docs(concept): correct example for creating injector
2012-09-06 16:06:23 -07:00
Godmar Back
0472c5f07e
docs(module): fixed module example and corrected typos
2012-09-06 16:06:23 -07:00
Jay Zeng
7079ff5eb6
docs(module): myAppModule -> simpleAppModule
2012-09-06 16:06:22 -07:00
Sahat Yalkabov
62cfedbe0c
doc(module) changed simpleApp to myApp in the Module page guide for consistency
2012-08-30 16:10:39 -07:00
Steve Nicolai
5cb7297a08
doc(devguide) - Fix typos and small grammatical errors in the developer guide.
2012-08-30 16:02:24 -07:00
Uri Goldshtein
f5f1200f25
Loading from Google CDN
...
As you guys had mansion, we can and need to do it through Google CDN for better performance,
so i've updated it accordingly
2012-08-30 15:49:11 -07:00
Tyson Benson
c023c850c3
docs(typos): fix typos in dev guide
2012-08-30 15:43:58 -07:00
csugden
351deb555f
Update docs/content/guide/overview.ngdoc
...
Corrects video information
2012-08-30 15:28:15 -07:00
Jamie Krug
847d2da0f8
fix(docs): Fix typos and improve grammar.
2012-08-30 15:25:21 -07:00
Jamie Krug
dbefd671e4
fix(docs): Fix bad links.
2012-08-30 15:25:20 -07:00
Colin Frei
aff68a9ddf
docs(module) fix typo
2012-08-30 15:22:08 -07:00
Misko Hevery
7a5f25f667
doc(guide): add concepts
2012-08-27 15:44:38 -07:00
Colin Frei
7e18724dfa
doc(directive) correct typos
2012-08-27 15:01:50 -07:00
Misko Hevery
d05a2809a1
doc(guide) simplify the guide home page
2012-08-27 14:59:17 -07:00
Vojta Jina
00683a8bbb
docs: fix broken links to $compileProvider.directive()
2012-08-12 10:44:29 -07:00
Brian Ford
2e3651686c
fix(docs): added note about using JSON3 as a polyfill for IE7
2012-08-10 16:27:44 -07:00
Brian Ford
536de14821
fix(docs): added note about needing JSON shim for IE7 and earlier
2012-08-10 16:27:44 -07:00
Vojta Jina
33ad2b4126
docs(guide): hide scenario for directive example
...
scenario test for this example would be tricky, we need to teach
the runner how to inject mocks first.
2012-07-30 21:21:34 -07:00
brettcannon
a1107e81eb
fix(docs): "in depth" -> "in-depth"
2012-07-20 20:54:42 -07:00
brettcannon
8c81a0f372
fix(docs): Fix a spelling mistake by replacing the noun with "it"
2012-07-19 15:04:29 -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
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
9af7a9198e
fix($defer): remove deprecated $defer service
2012-06-12 01:09:07 -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
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
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
6933fb7924
docs(bootstrap): rewritten bootstrap guide
2012-06-02 16:02:05 -07:00
Misko Hevery
f5afcca99d
docs(overview): updated overview guide
2012-06-02 16:02:04 -07:00
Misko Hevery
7c24282188
chore($route): rename events
...
BREAKING CHANGE
rename $beforeRouteChange to $routeChangeStart
rename $afterRouteChange to $routeChangeSuccess
2012-06-01 16:57:49 -07:00
Misko Hevery
8e2675029f
chore(docs): re-skin main documentation
2012-05-04 16:12:17 -07:00
Chris Dawson
666f326c5d
docs(guide/controllers): update w/ controller scope separation
2012-04-20 10:57:26 -07:00
pkozlowski-opensource
908785960d
docs(guide/e2e): fix a link to e2e dsl
2012-04-20 10:49:44 -07:00