<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/test, 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>test(Scope): fix tests after reverting commits</title>
<updated>2013-08-28T05:36:23+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-08-28T05:36:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e86de0db56e156d6c603584c440026effaf19b82'/>
<id>e86de0db56e156d6c603584c440026effaf19b82</id>
<content type='text'>
Making assertions on state (rather than interactions) is better anyway.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Making assertions on state (rather than interactions) is better anyway.
</pre>
</div>
</content>
</entry>
<entry>
<title>revert: feat(mocks): make $timeout#flush throw an exception when empty</title>
<updated>2013-08-28T00:23:36+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-08-28T00:20:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4114f9c21bec5a396e59954dfc42d2c96527ac3d'/>
<id>4114f9c21bec5a396e59954dfc42d2c96527ac3d</id>
<content type='text'>
This reverts commit cbf06a5d64aba537f0e2679a194d3998d8365493.

This turned out to be a bad idea because it allow us to fast-forward
the wall clock time (see previous commit).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit cbf06a5d64aba537f0e2679a194d3998d8365493.

This turned out to be a bad idea because it allow us to fast-forward
the wall clock time (see previous commit).
</pre>
</div>
</content>
</entry>
<entry>
<title>revert: fix(mocks): $timeout#flush should not update time when empty</title>
<updated>2013-08-28T00:21:11+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-08-28T00:20:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=70b44ad32a79e0746e19a74bde35f49c79f89942'/>
<id>70b44ad32a79e0746e19a74bde35f49c79f89942</id>
<content type='text'>
This reverts commit 42af8eada2803a54a98b4f792e60feb480d68a0c.

This turned out to be a bad idea as it prevents us from moving the
time forward and asserting that the component state didn't change
due to the scheduled task executing too early.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 42af8eada2803a54a98b4f792e60feb480d68a0c.

This turned out to be a bad idea as it prevents us from moving the
time forward and asserting that the component state didn't change
due to the scheduled task executing too early.
</pre>
</div>
</content>
</entry>
</feed>
