<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/test/ng/directive, branch v1.1.1</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix(ngRepeat): support mostly-stable repeating for primitives</title>
<updated>2012-11-26T19:36:53+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-23T21:43:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=1b17dfa693c36607ea86c7129a8612f7771c2f22'/>
<id>1b17dfa693c36607ea86c7129a8612f7771c2f22</id>
<content type='text'>
I'm reverting changes that were originally done to ngRepeat to fix #933,
because these are now not necessary after the previous changes to keep
ngModel always synced with the DOM.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I'm reverting changes that were originally done to ngRepeat to fix #933,
because these are now not necessary after the previous changes to keep
ngModel always synced with the DOM.
</pre>
</div>
</content>
</entry>
<entry>
<title>test(ngRepeat): clean up and improve tests</title>
<updated>2012-11-26T19:36:52+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-23T15:08:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c8e9105fe685e95340336b57cb85faebbc7955cc'/>
<id>c8e9105fe685e95340336b57cb85faebbc7955cc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test(ngRepeat): add test for issue #1076</title>
<updated>2012-11-26T19:17:11+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-26T19:17:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e7d37ee45ac48b0ff2a3d43f7236d316be6c241e'/>
<id>e7d37ee45ac48b0ff2a3d43f7236d316be6c241e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(form): add ability to reset a form to pristine state</title>
<updated>2012-11-26T15:44:34+00:00</updated>
<author>
<name>Pawel Kozlowski</name>
</author>
<published>2012-07-07T17:02:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=733a97adf87bf8f7ec6be22b37c4676cf7b5fc2b'/>
<id>733a97adf87bf8f7ec6be22b37c4676cf7b5fc2b</id>
<content type='text'>
Retting a form to pristine state will cause all of the nested
form and form controls to be recursively reset as well.

Closes #856
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Retting a form to pristine state will cause all of the nested
form and form controls to be recursively reset as well.

Closes #856
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(select): select option with a label of 0 is not shown</title>
<updated>2012-10-31T22:03:13+00:00</updated>
<author>
<name>Sudhir Jonathan</name>
</author>
<published>2012-10-21T07:27:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=b3cae4f457f1688346bbd0b08cccc9c504f83406'/>
<id>b3cae4f457f1688346bbd0b08cccc9c504f83406</id>
<content type='text'>
Bug caused by the use of the `||` operator to replace all non-truthy
values with an empty string. Changed to replace only `undefined` values.

Closes #1401
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Bug caused by the use of the `||` operator to replace all non-truthy
values with an empty string. Changed to replace only `undefined` values.

Closes #1401
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(FormController): propagate dirty state to parent forms</title>
<updated>2012-09-06T23:06:26+00:00</updated>
<author>
<name>Kai Groner</name>
</author>
<published>2012-06-07T03:23:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=04329151d2df833f803629cefa781aa6409fe6a5'/>
<id>04329151d2df833f803629cefa781aa6409fe6a5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngSrc): don't set src if value is empty string</title>
<updated>2012-09-06T23:06:24+00:00</updated>
<author>
<name>Xiangru Chen</name>
</author>
<published>2012-07-14T09:40:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=b6e4a71166c7f00f4140fd7ea8f0cd81b4487a3f'/>
<id>b6e4a71166c7f00f4140fd7ea8f0cd81b4487a3f</id>
<content type='text'>
Current implementation of ngSrc may lead to empty src attribute when page is loading.

For example:

&lt;img ng-src="{{image.url}}"&gt;
can be temporarily rendered as

&lt;img src=""&gt;
before the image resource is loaded.

Some browser emits a request to the current page when seeing &lt;img src=""&gt; (Firefox13 and IE8 will, Chromium20 won't), which leads to performance problems.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Current implementation of ngSrc may lead to empty src attribute when page is loading.

For example:

&lt;img ng-src="{{image.url}}"&gt;
can be temporarily rendered as

&lt;img src=""&gt;
before the image resource is loaded.

Some browser emits a request to the current page when seeing &lt;img src=""&gt; (Firefox13 and IE8 will, Chromium20 won't), which leads to performance problems.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(ngModel): support ngTrim attribute on input</title>
<updated>2012-09-06T23:06:23+00:00</updated>
<author>
<name>Gregory Pike</name>
</author>
<published>2012-08-31T23:20:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d519953a4b219035587e3fcb2e9cc52e02b408ca'/>
<id>d519953a4b219035587e3fcb2e9cc52e02b408ca</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngClassEven/Odd): filtering/ordering and repeater</title>
<updated>2012-09-06T23:06:22+00:00</updated>
<author>
<name>petrovalex</name>
</author>
<published>2012-08-14T19:45:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6c67719dfa6ff3f2a15a8e1e7660cf2e6e9155b0'/>
<id>6c67719dfa6ff3f2a15a8e1e7660cf2e6e9155b0</id>
<content type='text'>
Closes #1076
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #1076
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngClass): works with class interpolation</title>
<updated>2012-09-06T23:06:21+00:00</updated>
<author>
<name>Max Martinsson</name>
</author>
<published>2012-06-07T15:25:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=cebd015f78c5e21bd37d4bc055dbcdc21dac2ef2'/>
<id>cebd015f78c5e21bd37d4bc055dbcdc21dac2ef2</id>
<content type='text'>
Closes #1016
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #1016
</pre>
</div>
</content>
</entry>
</feed>
