<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/test, branch v0.10.4</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix(defer.cancel): should return false instead of undefined</title>
<updated>2011-10-23T04:32:48+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-10-23T04:32:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=bacc31bea968a505b52889630e4bf578b18ff996'/>
<id>bacc31bea968a505b52889630e4bf578b18ff996</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($defer): add $defer.cancel</title>
<updated>2011-10-23T04:32:48+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-10-22T06:33:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ad90c3574f8365ee4a1a973d5e43c64fe9fcda2c'/>
<id>ad90c3574f8365ee4a1a973d5e43c64fe9fcda2c</id>
<content type='text'>
This functionality was previously available only as obscure $browser.defer.cancel.

I also added docs and tests and fixed an issue in .defer.cancel mock.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This functionality was previously available only as obscure $browser.defer.cancel.

I also added docs and tests and fixed an issue in .defer.cancel mock.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($location): rewrite links with nested elements</title>
<updated>2011-10-22T22:35:18+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-10-20T15:46:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9b85757102fbd44e88d0a3909fdf8b90f191b593'/>
<id>9b85757102fbd44e88d0a3909fdf8b90f191b593</id>
<content type='text'>
For example:
&lt;a href="some/link"&gt;inner &lt;span&gt;text&lt;/span&gt;&lt;/a&gt;

If you click on "text", then the span element is event.target, so we need to traverse the DOM.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For example:
&lt;a href="some/link"&gt;inner &lt;span&gt;text&lt;/span&gt;&lt;/a&gt;

If you click on "text", then the span element is event.target, so we need to traverse the DOM.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(filter.date): use mediumDate as default</title>
<updated>2011-10-20T23:51:28+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-10-20T23:50:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c6c3949b14f4003ecab291243edfca61262f2c3d'/>
<id>c6c3949b14f4003ecab291243edfca61262f2c3d</id>
<content type='text'>
Breaking change!

Previously the default was fullDate.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Breaking change!

Previously the default was fullDate.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(date filter): default to fullDate format</title>
<updated>2011-10-20T23:51:28+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-10-19T06:42:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e175db37c6f52bba4080efeec22a7120a896099e'/>
<id>e175db37c6f52bba4080efeec22a7120a896099e</id>
<content type='text'>
The browser's behave inconsistently, so we should just stick to one format
when the format is not specified by the developer

Closes #605
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The browser's behave inconsistently, so we should just stick to one format
when the format is not specified by the developer

Closes #605
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(compiler): revert 8611ebe6 - calling \$digest after linking</title>
<updated>2011-10-20T22:51:14+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-10-20T22:37:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f38010d3a2f457a53798212ef72418637dabe189'/>
<id>f38010d3a2f457a53798212ef72418637dabe189</id>
<content type='text'>
Change introduced by me in 8611ebe6 results in considerable inefficiencies when the compiler
and linker is used from within a widget, in which case, we call $digest unnecessary since it
will be called by the $apply which called the directive/widget in the first place.

There are only two places when the extra $digest call can be useful - when manually bootstrapping
the app or in tests. However even in tests this behavior can result in unwanted results (especially
when ng:controller is involved). So it is better to leave it for the developer to call $digest
when it is really needed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change introduced by me in 8611ebe6 results in considerable inefficiencies when the compiler
and linker is used from within a widget, in which case, we call $digest unnecessary since it
will be called by the $apply which called the directive/widget in the first place.

There are only two places when the extra $digest call can be useful - when manually bootstrapping
the app or in tests. However even in tests this behavior can result in unwanted results (especially
when ng:controller is involved). So it is better to leave it for the developer to call $digest
when it is really needed.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(radio): allows data-binding on value property. Closes#316</title>
<updated>2011-10-20T18:30:40+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-10-20T18:06:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=7fc18b263dc74f52bb677e446f23e35d64948841'/>
<id>7fc18b263dc74f52bb677e446f23e35d64948841</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ng:options): compile null/blank option tag</title>
<updated>2011-10-20T05:52:14+00:00</updated>
<author>
<name>TEHEK Firefox</name>
</author>
<published>2011-10-11T22:37:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=36928858104ba793dfc7372dbaa28048123d6e63'/>
<id>36928858104ba793dfc7372dbaa28048123d6e63</id>
<content type='text'>
Fixes #562
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #562
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ng:pattern): correctly parse out inlined regexp</title>
<updated>2011-10-20T04:52:20+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-10-20T04:52:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=5d43439dbe764a4c7227f51b34a81b044f13901b'/>
<id>5d43439dbe764a4c7227f51b34a81b044f13901b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(input): add ng:minlength and ng:maxlength validation</title>
<updated>2011-10-19T23:49:20+00:00</updated>
<author>
<name>Konstantin Stepanov</name>
</author>
<published>2011-10-17T23:18:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=78f394fd17be581c84ecd526bb786ed1681d35cb'/>
<id>78f394fd17be581c84ecd526bb786ed1681d35cb</id>
<content type='text'>
notes(igor): I also e2e tests and refactorred the e2e test example to be
more clear about what is a variable and what is an html/framework api.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
notes(igor): I also e2e tests and refactorred the e2e test example to be
more clear about what is a variable and what is an html/framework api.
</pre>
</div>
</content>
</entry>
</feed>
