<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src, 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>feat(sanitizer): add html5 elements to the whitelist</title>
<updated>2011-10-20T16:44:52+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-10-20T16:43:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=fabc9f77a3fae10c2b8d9a9ad1541e827cc0390d'/>
<id>fabc9f77a3fae10c2b8d9a9ad1541e827cc0390d</id>
<content type='text'>
Closes #89
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #89
</pre>
</div>
</content>
</entry>
<entry>
<title>style(select): cleaning up select.js</title>
<updated>2011-10-20T05:52:14+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-10-20T05:51:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c17c731fdc9c5d00cc606df19c9b36d51e41a8d7'/>
<id>c17c731fdc9c5d00cc606df19c9b36d51e41a8d7</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>
</feed>
