<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/test, branch v1.2.10</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>feat($animate): provide support for a close callback</title>
<updated>2014-01-24T17:21:29+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2014-01-22T17:38:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ca6b7d0fa2e355ebd764230260758cee9a4ebe1e'/>
<id>ca6b7d0fa2e355ebd764230260758cee9a4ebe1e</id>
<content type='text'>
Closes #5685
Closes #5053
Closes #4993
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #5685
Closes #5053
Closes #4993
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(a): don't preventDefault on click when SVGAElement has an xlink:href attribute</title>
<updated>2014-01-22T19:51:47+00:00</updated>
<author>
<name>Caitlin Potter</name>
</author>
<published>2014-01-20T16:21:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e0209169bf1463465ad07484421620748a4d3908'/>
<id>e0209169bf1463465ad07484421620748a4d3908</id>
<content type='text'>
Before this change, an SVGAElement with an xlink:href attribute and no href or name attribute which
was compiled by the angular HTML compiler would never be clickable, due to the htmlAnchorDirective
calling event.preventDefault() due to the missing href attribute.

This change corrects this behaviour by also testing the xlink:href attribute if the element in
question is determined to be an SVG anchor tag (with the href property having type SVGAnimatedString)

Closes #5896
Closes #5897
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Before this change, an SVGAElement with an xlink:href attribute and no href or name attribute which
was compiled by the angular HTML compiler would never be clickable, due to the htmlAnchorDirective
calling event.preventDefault() due to the missing href attribute.

This change corrects this behaviour by also testing the xlink:href attribute if the element in
question is determined to be an SVG anchor tag (with the href property having type SVGAnimatedString)

Closes #5896
Closes #5897
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(input): use Chromium's email validation regexp</title>
<updated>2014-01-22T02:40:55+00:00</updated>
<author>
<name>Caitlin Potter</name>
</author>
<published>2014-01-22T02:19:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=79e519fedaec54390a8bdacfb1926bfce57a1eb6'/>
<id>79e519fedaec54390a8bdacfb1926bfce57a1eb6</id>
<content type='text'>
This change uses the regexp from Chromium/Blink to validate emails, and corrects
an error in the validation engine, which previously considered an invalid email
to be valid. Additionally, the regexp was invalidating emails with capital
letters, however this is not the behaviour recomended in the spec, or implemented
in Chromium.

Closes #5899
Closes #5924
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change uses the regexp from Chromium/Blink to validate emails, and corrects
an error in the validation engine, which previously considered an invalid email
to be valid. Additionally, the regexp was invalidating emails with capital
letters, however this is not the behaviour recomended in the spec, or implemented
in Chromium.

Closes #5899
Closes #5924
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($parse): do not use locals to resolve object properties</title>
<updated>2014-01-22T00:27:04+00:00</updated>
<author>
<name>Lucas Galfasó</name>
</author>
<published>2014-01-17T17:59:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f09b6aa5b58c090e3b8f8811fb7735e38d4b7623'/>
<id>f09b6aa5b58c090e3b8f8811fb7735e38d4b7623</id>
<content type='text'>
Do not use the locals when performing a field access in an angular expression.

Closes #5838
Closes #5862
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Do not use the locals when performing a field access in an angular expression.

Closes #5838
Closes #5862
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($animate): provide support for DOM callbacks</title>
<updated>2014-01-14T18:21:28+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2014-01-14T02:51:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=dde1b2949727c297e214c99960141bfad438d7a4'/>
<id>dde1b2949727c297e214c99960141bfad438d7a4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($animate): use requestAnimationFrame instead of a timeout to issue a reflow</title>
<updated>2014-01-14T18:21:19+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2014-01-12T20:49:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4ae3184c5915aac9aa00889aa2153c8e84c14966'/>
<id>4ae3184c5915aac9aa00889aa2153c8e84c14966</id>
<content type='text'>
Closes #4278
Closes #4225
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #4278
Closes #4225
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($animate): ensure the final closing timeout respects staggering animations</title>
<updated>2014-01-14T18:20:50+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2014-01-12T04:44:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ed53100a0dbc9119d5dfc8b7248845d4f6989df2'/>
<id>ed53100a0dbc9119d5dfc8b7248845d4f6989df2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore($animate): remove useless and expired test</title>
<updated>2014-01-14T18:20:27+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2014-01-14T01:51:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6df598d9f5a52085b90085b41631ef34f3edc386'/>
<id>6df598d9f5a52085b90085b41631ef34f3edc386</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($animate): prevent race conditions for class-based animations when animating on the same CSS class</title>
<updated>2014-01-14T18:20:10+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2014-01-06T04:47:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4aa9df7a7ae533531dfae1e3eb9646245d6b5ff4'/>
<id>4aa9df7a7ae533531dfae1e3eb9646245d6b5ff4</id>
<content type='text'>
Closes #5588
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #5588
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($animate): correctly detect and handle CSS transition changes during class addition and removal</title>
<updated>2014-01-14T18:19:09+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2014-01-02T22:27:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7d5d62dafe11620082c79da35958f8014eeb008c'/>
<id>7d5d62dafe11620082c79da35958f8014eeb008c</id>
<content type='text'>
When a CSS class containing transition code is added to an element then an animation should kick off.
ngAnimate doesn't do this. It only respects transition styles that are already present on the element
or on the setup class (but not the addClass animation).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When a CSS class containing transition code is added to an element then an animation should kick off.
ngAnimate doesn't do this. It only respects transition styles that are already present on the element
or on the setup class (but not the addClass animation).
</pre>
</div>
</content>
</entry>
</feed>
