<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src, branch v1.0.3</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix($location): reset $location.$$replace with every watch call</title>
<updated>2012-11-26T22:24:39+00:00</updated>
<author>
<name>Rado Kirov</name>
</author>
<published>2012-09-22T01:57:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=fc781560a341c804b02c7efd30c6d3010206401c'/>
<id>fc781560a341c804b02c7efd30c6d3010206401c</id>
<content type='text'>
Closes #1111
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #1111
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngClassOdd/ngClassEven): support shrinking/reordering in repeaters</title>
<updated>2012-11-26T20:33:45+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=6f18adedef60ddb972a446046270f98c4ac18bb7'/>
<id>6f18adedef60ddb972a446046270f98c4ac18bb7</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>style(jqLite): better variable names</title>
<updated>2012-11-26T20:33:45+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-23T21:45:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6ad894cd5831fee19b60e57563bfee7a3f0ec995'/>
<id>6ad894cd5831fee19b60e57563bfee7a3f0ec995</id>
<content type='text'>
selector =&gt; cssClasses
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
selector =&gt; cssClasses
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngRepeat): support mostly-stable repeating for primitives</title>
<updated>2012-11-26T20:33:45+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=cde2f1a868ffacdc592803358130587fd73aca7b'/>
<id>cde2f1a868ffacdc592803358130587fd73aca7b</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-26T20:33:45+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=6a831495dedc81e995bba276084eb3b23643557a'/>
<id>6a831495dedc81e995bba276084eb3b23643557a</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:39:00+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=00e7e3141819e14ced3279fa5dfb8eba4ff89e5f'/>
<id>00e7e3141819e14ced3279fa5dfb8eba4ff89e5f</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>fix(jqLite): fire $destroy event via triggerHandler</title>
<updated>2012-11-26T15:03:43+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-24T00:51:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=269fb43b3667c74b35980798fd54937d65b7b7de'/>
<id>269fb43b3667c74b35980798fd54937d65b7b7de</id>
<content type='text'>
in jQuery 1.8.x the data() data structure is changed and events are
not accessible via data().events. Since all we need is to trigger
all event handlers, we can do so via triggerHandler() api instead of
mocking with the internal jQuery data structures.

This fix was originally proposed by PeteAppleton via PR #1512.

Closes #1512
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
in jQuery 1.8.x the data() data structure is changed and events are
not accessible via data().events. Since all we need is to trigger
all event handlers, we can do so via triggerHandler() api instead of
mocking with the internal jQuery data structures.

This fix was originally proposed by PeteAppleton via PR #1512.

Closes #1512
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(jqLite): add triggerHandler()</title>
<updated>2012-11-26T15:03:39+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-24T00:47:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7530654328ae508bdd05d273ba4c4e04c90744b3'/>
<id>7530654328ae508bdd05d273ba4c4e04c90744b3</id>
<content type='text'>
we need triggerHandler() to become jQuery 1.8.x compatible.

this is not fully featured triggerHandler() implementation - it doesn't
bother creating new DOM events and passing them into the event handlers.

this is intentional, we don't need access to the native DOM event for our
own purposes and creating these event objects is really tricky.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
we need triggerHandler() to become jQuery 1.8.x compatible.

this is not fully featured triggerHandler() implementation - it doesn't
bother creating new DOM events and passing them into the event handlers.

this is intentional, we don't need access to the native DOM event for our
own purposes and creating these event objects is really tricky.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(Scope): allow removing a listener during event</title>
<updated>2012-11-25T10:41:32+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-09-25T08:09:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ef1874d1f3349844fcd172657cd0a4beac5ffd23'/>
<id>ef1874d1f3349844fcd172657cd0a4beac5ffd23</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(api): add ngRequired to input/select/textarea directives</title>
<updated>2012-11-25T00:19:47+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=55150a669a8496b597267a522955f5cecda7b5d9'/>
<id>55150a669a8496b597267a522955f5cecda7b5d9</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>
</feed>
