<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/docs, branch v1.2.0</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix(bootstrap-prettify): share $animate and $$postDigestQueue with demo apps</title>
<updated>2013-11-08T09:03:17+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-11-06T23:00:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=1df3da361d62726bf1dafe629a7fca845b6a8733'/>
<id>1df3da361d62726bf1dafe629a7fca845b6a8733</id>
<content type='text'>
Although demo apps run in an isolated environment, we need to be able to tell them to disable
animations when we are running end-to-end tests.  By sharing the same instance of $animate
between the two environments we can disable animation across the board.

The $animate service uses the $$postDigestQueue to run animations.  The outer $animate
service uses the outer $$postDigestQueue and to queue up these animations.  This means that
when we run a digest inside the embedded scope, the animations are never performed - they
just sit in the outer scope's queue and are only run when a digest is run on the outer scope.
By sharing this queue across the two scopes the animations are performed correctly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Although demo apps run in an isolated environment, we need to be able to tell them to disable
animations when we are running end-to-end tests.  By sharing the same instance of $animate
between the two environments we can disable animation across the board.

The $animate service uses the $$postDigestQueue to run animations.  The outer $animate
service uses the outer $$postDigestQueue and to queue up these animations.  This means that
when we run a digest inside the embedded scope, the animations are never performed - they
just sit in the outer scope's queue and are only run when a digest is run on the outer scope.
By sharing this queue across the two scopes the animations are performed correctly.
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(guide/filter): Refactor filter guide docs</title>
<updated>2013-11-07T22:14:57+00:00</updated>
<author>
<name>Tobias Bosch</name>
</author>
<published>2013-11-07T22:14:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=36621402015485613888158dc7ba29f4ff92a7e2'/>
<id>36621402015485613888158dc7ba29f4ff92a7e2</id>
<content type='text'>
This refactors the filter guide docs into a single file.
Also removes out of date references to the fact that Angular used to enhance Arrays while evaluating expressions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This refactors the filter guide docs into a single file.
Also removes out of date references to the fact that Angular used to enhance Arrays while evaluating expressions.
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(guide): delete ancient video</title>
<updated>2013-11-07T04:51:39+00:00</updated>
<author>
<name>Brad Green</name>
</author>
<published>2013-11-07T04:51:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ed8640b96463df8a8f9e4503095bd89916a120c5'/>
<id>ed8640b96463df8a8f9e4503095bd89916a120c5</id>
<content type='text'>
We have links to better videos now on the guide/index page.  This one's time has past.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We have links to better videos now on the guide/index page.  This one's time has past.</pre>
</div>
</content>
</entry>
<entry>
<title>docs(guide/overview): Refactor overview and mvc docs</title>
<updated>2013-11-07T01:11:44+00:00</updated>
<author>
<name>Tobias Bosch</name>
</author>
<published>2013-11-06T06:16:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=fc060dfc08f048511fe78e9df04ce4616171da34'/>
<id>fc060dfc08f048511fe78e9df04ce4616171da34</id>
<content type='text'>
Before, there we multiple overview docs:
- guide/overview
- guide/introduction
- guide/dev_guide.mvc
- guide/dev_guide.mvc.understanding_model
- guide/dev_guide.mvc.understanding_view
- guide/concepts

Now we have:
- guide/introduction: High level description of Angular with the key benefits but without code or any concrete concepts
- guide/concepts: explains all important concepts with a simple example and contains deep links to the other parts of the guide.

 All the old information was moved into existing documents or deleted when they were duplicates.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Before, there we multiple overview docs:
- guide/overview
- guide/introduction
- guide/dev_guide.mvc
- guide/dev_guide.mvc.understanding_model
- guide/dev_guide.mvc.understanding_view
- guide/concepts

Now we have:
- guide/introduction: High level description of Angular with the key benefits but without code or any concrete concepts
- guide/concepts: explains all important concepts with a simple example and contains deep links to the other parts of the guide.

 All the old information was moved into existing documents or deleted when they were duplicates.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(docModuleComponents): implement anchor scroll when content added</title>
<updated>2013-11-06T18:24:22+00:00</updated>
<author>
<name>Jeff Cross</name>
</author>
<published>2013-11-06T18:19:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=eb51b024c9b77527420014cdf7dbb292b5b9dd6b'/>
<id>eb51b024c9b77527420014cdf7dbb292b5b9dd6b</id>
<content type='text'>
When navigating to URLs such as
docs.angularjs.org/api/ng#filter, the browser
was not able to navigate to the named anchor,
"filter," because the anchor did not yet exist
in the DOM.

This fix uses the $anchorScroll service
to automatically scroll to the right place when
the content has been added to the page.

Fixes #4703
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When navigating to URLs such as
docs.angularjs.org/api/ng#filter, the browser
was not able to navigate to the named anchor,
"filter," because the anchor did not yet exist
in the DOM.

This fix uses the $anchorScroll service
to automatically scroll to the right place when
the content has been added to the page.

Fixes #4703
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(guide/directive): link to directives API from the top of the page</title>
<updated>2013-11-06T17:50:56+00:00</updated>
<author>
<name>Brian Ford</name>
</author>
<published>2013-11-06T17:50:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=56d09177997c4571bdd7209898599670f3cfac9a'/>
<id>56d09177997c4571bdd7209898599670f3cfac9a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(ngdoc): add dynamic anchors to anchor list</title>
<updated>2013-11-06T17:32:09+00:00</updated>
<author>
<name>Brian Ford</name>
</author>
<published>2013-11-06T17:32:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c1260716de634f0cc25ae884ffc481ed6b7d520a'/>
<id>c1260716de634f0cc25ae884ffc481ed6b7d520a</id>
<content type='text'>
Fixes some warnings during docs generation.

Closes #4673
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes some warnings during docs generation.

Closes #4673
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(guide/providers): add providers documentation</title>
<updated>2013-11-06T16:47:06+00:00</updated>
<author>
<name>Brian Ford</name>
</author>
<published>2013-11-06T16:26:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=5614fd283a22d130cf5e09dade67be3f3c3a97c2'/>
<id>5614fd283a22d130cf5e09dade67be3f3c3a97c2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngdocs): create mock Doc objects correctly</title>
<updated>2013-11-05T21:20:46+00:00</updated>
<author>
<name>Pete Bacon Darwin</name>
</author>
<published>2013-11-05T21:20:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d4493fda2c4c2ff1fdfc264bfb479741abc781c7'/>
<id>d4493fda2c4c2ff1fdfc264bfb479741abc781c7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngdocs): `shortDescription()` should not error if no `description`</title>
<updated>2013-11-05T21:16:52+00:00</updated>
<author>
<name>Pete Bacon Darwin</name>
</author>
<published>2013-11-05T21:16:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4c8fa353245b9c32261860caff18f002d294e19f'/>
<id>4c8fa353245b9c32261860caff18f002d294e19f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
