<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/ng, branch v1.2.14</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>style: enable jscs requireRightStickedOperators rule</title>
<updated>2014-03-01T00:47:21+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2014-03-01T00:43:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d3fbc25be21719e76907cacfcb0291788c79adc2'/>
<id>d3fbc25be21719e76907cacfcb0291788c79adc2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(forms): generated CSS classes for forms and inputs must have a ng prefix</title>
<updated>2014-02-28T19:59:12+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2014-02-28T19:59:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0d034a98ec4ef1e0c3c1727e23d1ccd971ae74e6'/>
<id>0d034a98ec4ef1e0c3c1727e23d1ccd971ae74e6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(input): update $parsers NgModelController doc</title>
<updated>2014-02-28T19:09:30+00:00</updated>
<author>
<name>Jason Winnebeck</name>
</author>
<published>2014-01-09T16:30:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0c8a88ba092a251ba8d79092c590f45a6cd27de9'/>
<id>0c8a88ba092a251ba8d79092c590f45a6cd27de9</id>
<content type='text'>
Make it clear that the result of the $parsers pipeline is what goes to the model value.

Closes #5708
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make it clear that the result of the $parsers pipeline is what goes to the model value.

Closes #5708
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($animate): animate dirty, pristine, valid, invalid for form/fields</title>
<updated>2014-02-28T06:01:34+00:00</updated>
<author>
<name>Yves Brissaud</name>
</author>
<published>2013-12-10T20:49:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=33443966c8e8cac85a863bb181d4a4aff00baab4'/>
<id>33443966c8e8cac85a863bb181d4a4aff00baab4</id>
<content type='text'>
Add css animations when form or field status change to/from dirty,
pristine, valid or invalid. This works like animation system present
with ngClass, ngShow, etc.

Closes #5378
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add css animations when form or field status change to/from dirty,
pristine, valid or invalid. This works like animation system present
with ngClass, ngShow, etc.

Closes #5378
</pre>
</div>
</content>
</entry>
<entry>
<title>docs($sce): fix typo</title>
<updated>2014-02-27T09:43:26+00:00</updated>
<author>
<name>Lajos Veres</name>
</author>
<published>2014-02-27T09:26:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8ae296823bacb26ab983a16395a4160f1c254276'/>
<id>8ae296823bacb26ab983a16395a4160f1c254276</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs($compile): fix typo</title>
<updated>2014-02-27T09:42:30+00:00</updated>
<author>
<name>Lajos Veres</name>
</author>
<published>2014-02-27T09:26:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2586e3a2acf83f8992f810b34a720cad9972f8d8'/>
<id>2586e3a2acf83f8992f810b34a720cad9972f8d8</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): ensure that animateable directives cancel expired leave animations</title>
<updated>2014-02-26T19:53:57+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2014-02-21T08:43:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e9881991ca0a5019d3a4215477738ed247898ba0'/>
<id>e9881991ca0a5019d3a4215477738ed247898ba0</id>
<content type='text'>
If enter -&gt; leave -&gt; enter -&gt; leave occurs then the first leave animation will
animate alongside the second. This causes the very first DOM node (the view in ngView
for example) to animate at the same time as the most recent DOM node which ends
up being an undesired effect. This fix takes care of this issue.

Closes #5886
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If enter -&gt; leave -&gt; enter -&gt; leave occurs then the first leave animation will
animate alongside the second. This causes the very first DOM node (the view in ngView
for example) to animate at the same time as the most recent DOM node which ends
up being an undesired effect. This fix takes care of this issue.

Closes #5886
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(*): fix jsdoc type expressions</title>
<updated>2014-02-26T11:47:22+00:00</updated>
<author>
<name>Peter Bacon Darwin</name>
</author>
<published>2014-02-26T11:46:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=332e935048d161764046b43fe6599e1db2afc3b6'/>
<id>332e935048d161764046b43fe6599e1db2afc3b6</id>
<content type='text'>
These errors in the docs were preventing some parts of the docs from being
parsed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These errors in the docs were preventing some parts of the docs from being
parsed.
</pre>
</div>
</content>
</entry>
<entry>
<title>revert: fix($location): parse query string when path is empty in hashbang mode</title>
<updated>2014-02-26T06:59:31+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2014-02-26T06:59:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=3d6dff44f33b192a7fa007bfda5e44574fadc6e1'/>
<id>3d6dff44f33b192a7fa007bfda5e44574fadc6e1</id>
<content type='text'>
This reverts commit cad717b1171affc3d540cea372576c70b0cb2295.

This change causes regressions in existing code and after closer inspection
I realized that it is trying to fix an issue that is should not be considered
a valid issue.

The location service was designed to work against either "hash" part of the
window.location when in the hashbang mode or full url when in the html5 mode.

This change tries to merge the two modes partially, which is not right. One
reason for this is that the search part of window.location can't be modified
while in the hashbang mode (a browser limitation), so with this change part
of the search object should be immutable and read-only which will only cause
more confusion.

Relates to #5964
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit cad717b1171affc3d540cea372576c70b0cb2295.

This change causes regressions in existing code and after closer inspection
I realized that it is trying to fix an issue that is should not be considered
a valid issue.

The location service was designed to work against either "hash" part of the
window.location when in the hashbang mode or full url when in the html5 mode.

This change tries to merge the two modes partially, which is not right. One
reason for this is that the search part of window.location can't be modified
while in the hashbang mode (a browser limitation), so with this change part
of the search object should be immutable and read-only which will only cause
more confusion.

Relates to #5964
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($parse): support trailing commas in object &amp; array literals</title>
<updated>2014-02-25T23:38:37+00:00</updated>
<author>
<name>Michał Gołębiowski</name>
</author>
<published>2013-08-21T09:25:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6b049c74ccc9ee19688bb9bbe504c300e61776dc'/>
<id>6b049c74ccc9ee19688bb9bbe504c300e61776dc</id>
<content type='text'>
Per ECMAScript 5.1 specification trailing commas are allowed in object and
array literals. All modern browsers as well as IE&gt;8 support this syntax.
This commit adds support for such syntax to Angular expressions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Per ECMAScript 5.1 specification trailing commas are allowed in object and
array literals. All modern browsers as well as IE&gt;8 support this syntax.
This commit adds support for such syntax to Angular expressions.
</pre>
</div>
</content>
</entry>
</feed>
