aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide
AgeCommit message (Collapse)Author
2012-08-30doc(module) changed simpleApp to myApp in the Module page guide for consistencySahat Yalkabov
2012-08-30doc(devguide) - Fix typos and small grammatical errors in the developer guide.Steve Nicolai
2012-08-30Loading from Google CDNUri Goldshtein
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-30docs(typos): fix typos in dev guideTyson Benson
2012-08-30Update docs/content/guide/overview.ngdoccsugden
Corrects video information
2012-08-30fix(docs): Fix typos and improve grammar.Jamie Krug
2012-08-30fix(docs): Fix bad links.Jamie Krug
2012-08-30docs(module) fix typoColin Frei
2012-08-27doc(guide): add conceptsMisko Hevery
2012-08-27doc(directive) correct typosColin Frei
2012-08-27doc(guide) simplify the guide home pageMisko Hevery
2012-08-12docs: fix broken links to $compileProvider.directive()Vojta Jina
2012-08-10fix(docs): added note about using JSON3 as a polyfill for IE7Brian Ford
2012-08-10fix(docs): added note about needing JSON shim for IE7 and earlierBrian Ford
2012-07-30docs(guide): hide scenario for directive exampleVojta Jina
scenario test for this example would be tricky, we need to teach the runner how to inject mocks first.
2012-07-20fix(docs): "in depth" -> "in-depth"brettcannon
2012-07-19fix(docs): Fix a spelling mistake by replacing the noun with "it"brettcannon
2012-07-19fix(docs): Fixed defer to timeout change in timer directive exampleChris Dawson
2012-07-19fix(docs): Spelling errorsChris Dawson
2012-07-16fix(docs): Fix spelling, punctuation and grammatical errors on dev guide ↵Jamie Krug
bootstrap page.
2012-07-16fix(docs): Fix spelling, punctuation and grammatical errors on dev guide ↵Jamie Krug
compiler page.
2012-07-16fix(docs): Fix spelling, punctuation and grammatical errors on dev guide ↵Jamie Krug
overview page.
2012-07-16fix(docs): correct typoKevin Old
2012-06-12fix($defer): remove deprecated $defer serviceIgor Minar
2012-06-12docs(*): simplify doc urlsIgor Minar
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-10docs(*): fix various outdated docs and examplesIgor Minar
Closes #1030
2012-06-09docs($location): clarify the two-way data-binding noteIgor Minar
Closes #1030
2012-06-08feat($compile): simplify isolate scope bindingsMisko Hevery
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-04docs(guide): correct couple of typosunknown
2012-06-02doc(NgModelController) add example and $render documentationMisko Hevery
Closes#930
2012-06-02doc(guide): corrected examplesMisko Hevery
2012-06-02merge cleanupMisko Hevery
2012-06-02doc(guide): clean up broken linksMisko Hevery
2012-06-02doc(compiler): rewriteMisko Hevery
2012-06-02docs(introduction): renameMisko Hevery
2012-06-02doc(i18n): renameMisko Hevery
2012-06-02docs(expression): rewriteMisko Hevery
2012-06-02docs(scope): rewriteMisko Hevery
2012-06-02docs(dependency injecton): rewriteMisko Hevery
2012-06-02docs(bootstrap): rewritten bootstrap guideMisko Hevery
2012-06-02docs(overview): updated overview guideMisko Hevery
2012-06-01chore($route): rename eventsMisko Hevery
BREAKING CHANGE rename $beforeRouteChange to $routeChangeStart rename $afterRouteChange to $routeChangeSuccess
2012-05-04chore(docs): re-skin main documentationMisko Hevery
2012-04-20docs(guide/controllers): update w/ controller scope separationChris Dawson
2012-04-20docs(guide/e2e): fix a link to e2e dslpkozlowski-opensource
2012-04-12fix($location): properly rewrite urls in html5 mode with base url setIgor Minar
previously we were doing all kinds of checks to see if we should rewrite the url or not and we were missing many scenarios. not any more. with this change, we rewrite the url unless: - the href is not set - link has target attribute - the absolute url of the link doesn't match the absolute prefix for all urls in our app This also means that ng-ext-link attribute which we previously used to distinguish external links from app links is not necessary any more. apps can just set target=_self to prevent rewriting. BREAKING CHANGE: ng-ext-link directive was removed because it's unnecessary apps that relied on ng-ext-link should simply replace it with target=_self
2012-04-10docs(guide.forms): fix the forms dev guide to use ng-disabledVojta Jina
2012-04-09fix(docs): change all directive references to use the normalized namesIgor Minar
2012-04-03feat(ngModel): update model on each key stroke (revert ngModelInstant)Vojta Jina
It turns out that listening only on "blur" event is not sufficient in many scenarios, especially when you use form validation you always had to use ngModelnstant e.g. if you want to disable a button based on valid/invalid form. The feedback we got from our apps as well as external apps is that the ngModelInstant should be the default. In the future we might provide alternative ways of suppressing updates on each key stroke, but it's not going to be the default behavior. Apps already using the ngModelInstant can safely remove it from their templates. Input fields without ngModelInstant directive will start propagating the input changes into the model on each key stroke.
2012-04-03Doc fixes in bootstrapBrad Green
Now makes sense.