<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/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(ngClassOdd/ngClassEven): support shrinking/reordering in repeaters</title>
<updated>2012-11-26T19:36:53+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-23T21:46:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d859dcecea654d1d858cd756c6efb8435a453197'/>
<id>d859dcecea654d1d858cd756c6efb8435a453197</id>
<content type='text'>
We need to watch $index in addition to cssClasses because only then
we can correctly respond to shrinking or reordered repeaters.

Closes #1076
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We need to watch $index in addition to cssClasses because only then
we can correctly respond to shrinking or reordered repeaters.

Closes #1076
</pre>
</div>
</content>
</entry>
<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>fix(ngModel): sync ngModel state with scope state</title>
<updated>2012-11-26T19:36:53+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-23T21:40:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e6d9bea4f3b2eb28851298d3dc3a30d46062d58a'/>
<id>e6d9bea4f3b2eb28851298d3dc3a30d46062d58a</id>
<content type='text'>
In cases when we reuse elements in a repeater but associate
them with a new scope (see #933 - repeating over array of
primitives) it's possible for the internal ngModel state and
the scope state to get out of sync. This change ensure that
the two are always sync-ed up even in cases where we
reassociate an element with a different (but similar) scope.

In the case of repeating over array of primitives it's still
possible to run into issue if we iterate over primitives and
use form controls or similar widgets without ngModel - oh well,
we'd likely need a special repeater for primitives to deal
with this properly, even then there might be cornercases.

Closes #933
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In cases when we reuse elements in a repeater but associate
them with a new scope (see #933 - repeating over array of
primitives) it's possible for the internal ngModel state and
the scope state to get out of sync. This change ensure that
the two are always sync-ed up even in cases where we
reassociate an element with a different (but similar) scope.

In the case of repeating over array of primitives it's still
possible to run into issue if we iterate over primitives and
use form controls or similar widgets without ngModel - oh well,
we'd likely need a special repeater for primitives to deal
with this properly, even then there might be cornercases.

Closes #933
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngRepeat): attempt to simplify and improve existing fix for #933</title>
<updated>2012-11-26T19:31:54+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-26T19:25:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d644dcfa52cba0cee3c6fa8d03e1654cdb654e53'/>
<id>d644dcfa52cba0cee3c6fa8d03e1654cdb654e53</id>
<content type='text'>
I'm keeping this in for future reference. The issue with this solution
is that if we shift() the first item in the array, the whole repeater
DOM will be rebuilt from scratch, we need to do better than that.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I'm keeping this in for future reference. The issue with this solution
is that if we shift() the first item in the array, the whole repeater
DOM will be rebuilt from scratch, we need to do better than that.
</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>docs(api): add ngRequired to input/select/textarea directives</title>
<updated>2012-11-25T00:18:10+00:00</updated>
<author>
<name>Dean Sofer</name>
</author>
<published>2012-11-09T00:15:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c8fd7fd0e2c77cc3d22382367ed5a1537383bee6'/>
<id>c8fd7fd0e2c77cc3d22382367ed5a1537383bee6</id>
<content type='text'>
Closes #1202
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #1202
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(ngList): fix typo</title>
<updated>2012-11-11T10:24:59+00:00</updated>
<author>
<name>Josh Adams</name>
</author>
<published>2012-11-05T20:42:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ffa6c5195fdc1c9a7d27e2cd20ac3f2e0ef46f74'/>
<id>ffa6c5195fdc1c9a7d27e2cd20ac3f2e0ef46f74</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(ngHide): Fix typo and make it more in line with ngShow</title>
<updated>2012-11-11T09:36:28+00:00</updated>
<author>
<name>Christian Vuerings</name>
</author>
<published>2012-11-09T13:44:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f3e053cb6fec8279e09330481ba8906e185f94c6'/>
<id>f3e053cb6fec8279e09330481ba8906e185f94c6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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(a): prevent Opera from incorrectly navigating on link click</title>
<updated>2012-09-06T23:06:27+00:00</updated>
<author>
<name>sgtpep</name>
</author>
<published>2012-07-26T21:26:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c81d8176cc55cd15acae05259ead73f90a01f0b7'/>
<id>c81d8176cc55cd15acae05259ead73f90a01f0b7</id>
<content type='text'>
we handle the navigation by ourselves, so we need to prevent the default action.

Opera ignores event.preventDefault() call so we must return false.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
we handle the navigation by ourselves, so we need to prevent the default action.

Opera ignores event.preventDefault() call so we must return false.
</pre>
</div>
</content>
</entry>
</feed>
