<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src, branch v1.0.5</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix($compile): sanitize values bound to a[href]</title>
<updated>2013-02-20T08:40:51+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-02-19T17:55:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=a8cc4497063118c766bdfa9464c9cbfc59413a81'/>
<id>a8cc4497063118c766bdfa9464c9cbfc59413a81</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngClass): keep track of old ngClass value manually</title>
<updated>2013-02-19T04:35:40+00:00</updated>
<author>
<name>Per Rovegård</name>
</author>
<published>2013-02-15T23:32:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2aa212b19c71df82287b4b074da3ab14cbf37348'/>
<id>2aa212b19c71df82287b4b074da3ab14cbf37348</id>
<content type='text'>
ngClassWatchAction, when called as a $watch function, gets the wrong old
value after it has been invoked previously due to observation of the
interpolated class attribute. As a result it doesn't remove classes
properly. Keeping track of the old value manually seems to fix this.

Closes #1637
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ngClassWatchAction, when called as a $watch function, gets the wrong old
value after it has been invoked previously due to observation of the
interpolated class attribute. As a result it doesn't remove classes
properly. Keeping track of the old value manually seems to fix this.

Closes #1637
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(compile): should not leak memory when there are top level empty text nodes</title>
<updated>2013-02-18T13:04:24+00:00</updated>
<author>
<name>Pete Bacon Darwin</name>
</author>
<published>2013-02-18T12:05:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=1f23cfe9c751f84d9fc996df6d54961b2e46e868'/>
<id>1f23cfe9c751f84d9fc996df6d54961b2e46e868</id>
<content type='text'>
The change to prevent &lt;span&gt; elements being wrapped around empty text nodes caused these empty text nodes to have scopes and controllers attached, through jqLite.data() calls, which led to memory leaks and errors in IE8.
Now we exclude all but document nodes and elements from having jqLite.data() set both in the compiler and in ng-view.

Fixes: #1968 and #1876
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The change to prevent &lt;span&gt; elements being wrapped around empty text nodes caused these empty text nodes to have scopes and controllers attached, through jqLite.data() calls, which led to memory leaks and errors in IE8.
Now we exclude all but document nodes and elements from having jqLite.data() set both in the compiler and in ng-view.

Fixes: #1968 and #1876
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($httpBackend): patch for Firefox bug w/ CORS and response headers</title>
<updated>2013-02-15T00:52:02+00:00</updated>
<author>
<name>Will Moore</name>
</author>
<published>2013-01-18T22:09:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0fa8e47fb5d2df5aab820691696f19662669eed0'/>
<id>0fa8e47fb5d2df5aab820691696f19662669eed0</id>
<content type='text'>
A workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=608735
In FF getAllResponseHeaders() returns null if the request is the result of CORS.

Tried to format the code so that when a FF patch is released and gains enough
traction it can easily be selected and deleted. Heavily inspired by jQuery's
patch for the same bug. This patch falls short of passing through custom headers
but covers all of the "simple response headers" in the spec at
http://www.w3.org/TR/cors/

This commit should get reverted once Firefox 21 gets out.

Closes #1468

Conflicts:
	src/ng/httpBackend.js
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=608735
In FF getAllResponseHeaders() returns null if the request is the result of CORS.

Tried to format the code so that when a FF patch is released and gains enough
traction it can easily be selected and deleted. Heavily inspired by jQuery's
patch for the same bug. This patch falls short of passing through custom headers
but covers all of the "simple response headers" in the spec at
http://www.w3.org/TR/cors/

This commit should get reverted once Firefox 21 gets out.

Closes #1468

Conflicts:
	src/ng/httpBackend.js
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(a): workaround IE bug affecting mailto urls</title>
<updated>2013-02-15T00:43:28+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-02-14T23:13:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8043784fd73a4768f4e904fd4121b21cd1fb49b4'/>
<id>8043784fd73a4768f4e904fd4121b21cd1fb49b4</id>
<content type='text'>
Apparently there is a really weird bug in IE6-8 that causes anchor textContent
to be reset with href content when both contain @ symbol.

Inserting a bogus comment node into all anchor elements in IE works around this
browser bug.

I'm fixing the issue via directive because that way we'll fix it for jQuery as
well.

I fixed an e2e test too because it was incorrect.

Closes #1949
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Apparently there is a really weird bug in IE6-8 that causes anchor textContent
to be reset with href content when both contain @ symbol.

Inserting a bogus comment node into all anchor elements in IE works around this
browser bug.

I'm fixing the issue via directive because that way we'll fix it for jQuery as
well.

I fixed an e2e test too because it was incorrect.

Closes #1949
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(*): don't use instanceof to detect arrays</title>
<updated>2013-02-15T00:40:58+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-02-15T00:37:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=526a6b31e53a89c8941d976b476d54dac3908781'/>
<id>526a6b31e53a89c8941d976b476d54dac3908781</id>
<content type='text'>
this breaks when multiple javascript contexts are involved - like in node-webkit

see original PR: #1966

Closes #1966
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
this breaks when multiple javascript contexts are involved - like in node-webkit

see original PR: #1966

Closes #1966
</pre>
</div>
</content>
</entry>
<entry>
<title>docs($resource): fix bad indentation producing a code block</title>
<updated>2013-02-14T23:45:37+00:00</updated>
<author>
<name>Cedric Soulas</name>
</author>
<published>2013-02-10T19:42:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=14fd064a62999a804bcce1050c81f603510fad95'/>
<id>14fd064a62999a804bcce1050c81f603510fad95</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs($rootScope): rearrange event listener docs</title>
<updated>2013-02-14T23:42:51+00:00</updated>
<author>
<name>Ewen Cumming</name>
</author>
<published>2013-02-11T22:56:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=3178afbf0c46705ba8320fccc52a08730e8e05fa'/>
<id>3178afbf0c46705ba8320fccc52a08730e8e05fa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngSwitch): make ngSwitch compatible with controller BC module</title>
<updated>2013-02-14T23:38:20+00:00</updated>
<author>
<name>deboer</name>
</author>
<published>2013-02-08T20:00:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ce3b6164328771a7bcb05e4c1b20f0bbfc4ac440'/>
<id>ce3b6164328771a7bcb05e4c1b20f0bbfc4ac440</id>
<content type='text'>
add a $scope to the ngSwitch's controller to fool the controller
BC (backwards compatibility) module used by DFA.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
add a $scope to the ngSwitch's controller to fool the controller
BC (backwards compatibility) module used by DFA.
</pre>
</div>
</content>
</entry>
<entry>
<title>docs($q): fix a few typos</title>
<updated>2013-02-14T23:19:49+00:00</updated>
<author>
<name>Vineet Kumar</name>
</author>
<published>2013-02-12T00:05:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=54a761905d0bc570cc35966aebfa77d42bbd4245'/>
<id>54a761905d0bc570cc35966aebfa77d42bbd4245</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
