<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js, branch v1.2.1</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>chore(release): cut the 1.2.1 underscore-empathy release</title>
<updated>2013-11-15T06:33:20+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2013-11-15T06:33:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=a3eb6baf58f779c0ac9780eb8949d11fba40e483'/>
<id>a3eb6baf58f779c0ac9780eb8949d11fba40e483</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: fix the "show source" button</title>
<updated>2013-11-15T05:38:53+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2013-11-15T05:33:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f4fcaa875766dbe11b82e38839f6ef196bcac6ad'/>
<id>f4fcaa875766dbe11b82e38839f6ef196bcac6ad</id>
<content type='text'>
Closes #4904
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #4904
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(ngResource): removed buzz client example</title>
<updated>2013-11-15T05:22:11+00:00</updated>
<author>
<name>Jeff Cross</name>
</author>
<published>2013-11-15T05:13:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=40e34a924b629280eb572e957cc8a2cf4f88394c'/>
<id>40e34a924b629280eb572e957cc8a2cf4f88394c</id>
<content type='text'>
The Buzz Client example on the ngResource
doc was causing parse errors.

While the root cause is being investigated,
the example has been removed, and should be
replaced by a more relevant example anyhow.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The Buzz Client example on the ngResource
doc was causing parse errors.

While the root cause is being investigated,
the example has been removed, and should be
replaced by a more relevant example anyhow.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($compile): accessing controllers of transcluded directives from children</title>
<updated>2013-11-15T04:59:50+00:00</updated>
<author>
<name>Tobias Bosch</name>
</author>
<published>2013-11-14T21:50:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=90f87072e83234ae366cfeb3c281503c31dad738'/>
<id>90f87072e83234ae366cfeb3c281503c31dad738</id>
<content type='text'>
Additional API (backwards compatible)
- Injects `$transclude` (see directive controllers) as 5th argument to directive link functions.
- `$transclude` takes an optional scope as first parameter that overrides the
  bound scope.

Deprecations:
- `transclude` parameter of directive compile functions (use the new parameter for link functions instead).

Refactorings:
- Don't use comment node to temporarily store controllers
- `ngIf`, `ngRepeat`, ... now all use `$transclude`

Closes #4935.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Additional API (backwards compatible)
- Injects `$transclude` (see directive controllers) as 5th argument to directive link functions.
- `$transclude` takes an optional scope as first parameter that overrides the
  bound scope.

Deprecations:
- `transclude` parameter of directive compile functions (use the new parameter for link functions instead).

Refactorings:
- Don't use comment node to temporarily store controllers
- `ngIf`, `ngRepeat`, ... now all use `$transclude`

Closes #4935.
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor($compile): move function def out of loop</title>
<updated>2013-11-15T04:53:30+00:00</updated>
<author>
<name>Tobias Bosch</name>
</author>
<published>2013-11-15T01:09:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c785918cbd245cc8ecf9a38e373b121c4e68a55b'/>
<id>c785918cbd245cc8ecf9a38e373b121c4e68a55b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(loader): don't rely on internal APIs</title>
<updated>2013-11-14T23:05:39+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2013-11-14T22:37:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8425e9fe383c17f6a5589c778658c5fc0570ae8f'/>
<id>8425e9fe383c17f6a5589c778658c5fc0570ae8f</id>
<content type='text'>
This significantly increases the size of the loader:
- minified: 1031bytes -&gt; 1509bytes (+46%)
- minified + gzip: 593bytes -&gt; 810bytes (+36%)

I'm not entirely sold on the idea of shipping minErr with the loade. With the current state, the angular-loader behavior is completely broken - this is just a quick fix, we can revisit this change in the future.


Closes #4437
Closes #4874</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This significantly increases the size of the loader:
- minified: 1031bytes -&gt; 1509bytes (+46%)
- minified + gzip: 593bytes -&gt; 810bytes (+36%)

I'm not entirely sold on the idea of shipping minErr with the loade. With the current state, the angular-loader behavior is completely broken - this is just a quick fix, we can revisit this change in the future.


Closes #4437
Closes #4874</pre>
</div>
</content>
</entry>
<entry>
<title>fix(minErr): remove references to internals APIs</title>
<updated>2013-11-14T23:00:53+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2013-11-14T22:18:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=94764ee08910726db1db7a1101c3001500306dea'/>
<id>94764ee08910726db1db7a1101c3001500306dea</id>
<content type='text'>
So that we can use minErr with angular-loader, before full angular is loaded.

This also fixes replacing the version during the build.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
So that we can use minErr with angular-loader, before full angular is loaded.

This also fixes replacing the version during the build.
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(mocks): Remove reference to flushNext</title>
<updated>2013-11-14T16:07:36+00:00</updated>
<author>
<name>James deBoer</name>
</author>
<published>2013-11-12T01:25:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=04492ef2279e2be18162bef89b0a75992a400cae'/>
<id>04492ef2279e2be18162bef89b0a75992a400cae</id>
<content type='text'>
Closes #4885
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #4885
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(tutorial): change controllers to not have name twice</title>
<updated>2013-11-14T14:47:01+00:00</updated>
<author>
<name>victorbjelkholm</name>
</author>
<published>2013-10-14T21:25:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c6016a6a85780ae68f71bbdd0eea391977225b7e'/>
<id>c6016a6a85780ae68f71bbdd0eea391977225b7e</id>
<content type='text'>
While giving the controller function a name helps with debugging,
since otherwise your controller will be anonymous in stack traces,
passing the name to both the `controller()` method and as the function name
is confusing for beginners.

Closes #4415
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
While giving the controller function a name helps with debugging,
since otherwise your controller will be anonymous in stack traces,
passing the name to both the `controller()` method and as the function name
is confusing for beginners.

Closes #4415
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(ngClass): fix e2e test for example</title>
<updated>2013-11-14T14:20:31+00:00</updated>
<author>
<name>Pete Bacon Darwin</name>
</author>
<published>2013-11-14T14:20:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=977e2f55de7075b7dbfbab37e40a632bbaf0252f'/>
<id>977e2f55de7075b7dbfbab37e40a632bbaf0252f</id>
<content type='text'>
Broken by fd7bca22e16b0ecbe1feaf49bab39d9a44b8df01
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Broken by fd7bca22e16b0ecbe1feaf49bab39d9a44b8df01
</pre>
</div>
</content>
</entry>
</feed>
