<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src, branch v1.2.0-rc.2</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix(ngView): ensure ngClass works with together with ngView's transclusion behavior</title>
<updated>2013-09-04T00:06:49+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-08-30T13:39:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=40c0220c47c620070b30aec6ec4552c68a8689eb'/>
<id>40c0220c47c620070b30aec6ec4552c68a8689eb</id>
<content type='text'>
Closes: #3727
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes: #3727
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngAnimate): ensure that ngClass is always compiled before enter, leave and move animations</title>
<updated>2013-09-04T00:06:49+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-08-28T23:32:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=36ad40b18cfdd0690411a5169aa94e222946b5cf'/>
<id>36ad40b18cfdd0690411a5169aa94e222946b5cf</id>
<content type='text'>
Closes #3727
Closes #3603
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #3727
Closes #3603
</pre>
</div>
</content>
</entry>
<entry>
<title>chore($rootScope): provide support to execute a function after the digest cycle is complete</title>
<updated>2013-09-04T00:06:49+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-08-14T00:51:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4e15c4fb47e93c1f6619a09125bc9a350e39b113'/>
<id>4e15c4fb47e93c1f6619a09125bc9a350e39b113</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngAnimate): cut down on extra $timeout calls</title>
<updated>2013-09-04T00:06:49+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-08-28T23:18:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4382df03fa1962aed027742c1b463406c40653c9'/>
<id>4382df03fa1962aed027742c1b463406c40653c9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(ngMock): allow passing an object literal as shorthand to module</title>
<updated>2013-09-03T21:22:12+00:00</updated>
<author>
<name>Merrick Christensen</name>
</author>
<published>2013-08-26T05:45:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f737c97df02918eb5b19bf5c8248fa3e20f9b361'/>
<id>f737c97df02918eb5b19bf5c8248fa3e20f9b361</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($http): allow empty responses to be cached</title>
<updated>2013-09-02T09:47:51+00:00</updated>
<author>
<name>jankuca</name>
</author>
<published>2013-08-30T01:52:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8e48c4ff6abf7083a04cf20312d2b106f4ba5b2c'/>
<id>8e48c4ff6abf7083a04cf20312d2b106f4ba5b2c</id>
<content type='text'>
Closes #3809
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #3809
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(core): parse IE11 UA string correctly</title>
<updated>2013-08-29T23:07:49+00:00</updated>
<author>
<name>Chirayu Krishnappa</name>
</author>
<published>2013-08-27T00:26:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=427ee93f11d0ef64b8844f9b43b2a0f21f2be2cb'/>
<id>427ee93f11d0ef64b8844f9b43b2a0f21f2be2cb</id>
<content type='text'>
It's great that IE11 wants to be compatible enough that it doesn't want
to be special cased and treated differently.

However, as long as one has to have a different code path for IE than
for the other supported browsers, we still need to detect and special
case it.  For instance, our URL parsing code still needs the same
workaround the we used for IE10.  We still see the same Access denied /
TypeError exceptions when setting certain values.  FYI, Angular doesn't
generally blindly test for IE – we also check the version number.

Thanks to modern.ie for the free IE11 test VM.

Closes #3682
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It's great that IE11 wants to be compatible enough that it doesn't want
to be special cased and treated differently.

However, as long as one has to have a different code path for IE than
for the other supported browsers, we still need to detect and special
case it.  For instance, our URL parsing code still needs the same
workaround the we used for IE10.  We still see the same Access denied /
TypeError exceptions when setting certain values.  FYI, Angular doesn't
generally blindly test for IE – we also check the version number.

Thanks to modern.ie for the free IE11 test VM.

Closes #3682
</pre>
</div>
</content>
</entry>
<entry>
<title>perf(ngBindHtml): watch the original value and sanitize later</title>
<updated>2013-08-29T19:47:51+00:00</updated>
<author>
<name>Chirayu Krishnappa</name>
</author>
<published>2013-08-29T19:47:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=068d8615d245a70bfde9007606b08a54c6e1cfec'/>
<id>068d8615d245a70bfde9007606b08a54c6e1cfec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngMocks): $logProvider should not use internal APIs</title>
<updated>2013-08-29T19:06:30+00:00</updated>
<author>
<name>Adam de Baugh</name>
</author>
<published>2013-08-29T03:30:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=baaa73ee1ef25fa506ff7aaab3159d710acdafdb'/>
<id>baaa73ee1ef25fa506ff7aaab3159d710acdafdb</id>
<content type='text'>
angular.mocks.$LogProvider $logProvider.debugEnabled(false) is crashing
with undefined when run inside karma/jasmine test runner:

angular.module('foo', []).config(['$logProvider', function ($logProvider) {
  $logProvider.debugEnabled(false);
}]);

Closes #3612</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
angular.mocks.$LogProvider $logProvider.debugEnabled(false) is crashing
with undefined when run inside karma/jasmine test runner:

angular.module('foo', []).config(['$logProvider', function ($logProvider) {
  $logProvider.debugEnabled(false);
}]);

Closes #3612</pre>
</div>
</content>
</entry>
<entry>
<title>docs($q): document notify behavior</title>
<updated>2013-08-29T18:50:52+00:00</updated>
<author>
<name>Colin Frei</name>
</author>
<published>2013-08-26T20:39:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c65fcc003db7530281b69d1b864f183d5b89809f'/>
<id>c65fcc003db7530281b69d1b864f183d5b89809f</id>
<content type='text'>
Closes #3341
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #3341
</pre>
</div>
</content>
</entry>
</feed>
