<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/ng/directive, branch v1.1.3</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:06:26+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=9532234bf1c408af9a6fd2c4743fdb585b920531'/>
<id>9532234bf1c408af9a6fd2c4743fdb585b920531</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:25:43+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=5f5d4feadbfa9d8ecc8150041dfd2bca2b2e9fea'/>
<id>5f5d4feadbfa9d8ecc8150041dfd2bca2b2e9fea</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-18T12:05:16+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=791804bdbfa6da7a39283623bd05628a01cd8720'/>
<id>791804bdbfa6da7a39283623bd05628a01cd8720</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>feat(ngSwitch): support multiple matches on ngSwitchWhen and ngSwitchDefault</title>
<updated>2013-02-15T03:55:05+00:00</updated>
<author>
<name>Lucas Galfasó</name>
</author>
<published>2013-02-06T13:08:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0af172040e03811c59d01682968241e3df226774'/>
<id>0af172040e03811c59d01682968241e3df226774</id>
<content type='text'>
Closes #1074
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #1074
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(a): workaround IE bug affecting mailto urls</title>
<updated>2013-02-15T00:42:58+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=37e8b12265291918396bfee65d444a8f63697b73'/>
<id>37e8b12265291918396bfee65d444a8f63697b73</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(ngSwitch): make ngSwitch compatible with controller BC module</title>
<updated>2013-02-14T23:36:03+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=9b7c1d0f7ce442d4ad2ec587e66d2d335e64fa4e'/>
<id>9b7c1d0f7ce442d4ad2ec587e66d2d335e64fa4e</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(ngClass): fix typo in description</title>
<updated>2013-02-04T10:36:29+00:00</updated>
<author>
<name>PowerKiKi</name>
</author>
<published>2013-02-04T07:01:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6518369f25ba72abf3e0fe6ef34a3ae1034e0088'/>
<id>6518369f25ba72abf3e0fe6ef34a3ae1034e0088</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(a): escape sample code in ng a directive</title>
<updated>2013-01-26T21:52:16+00:00</updated>
<author>
<name>Fred Sauer</name>
</author>
<published>2013-01-26T02:02:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e34519e93bacfa02e220a663aba671403cdbcada'/>
<id>e34519e93bacfa02e220a663aba671403cdbcada</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(ngOpen): fix typo in api docs</title>
<updated>2013-01-23T06:58:55+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-01-23T06:58:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=b62327ec2de6d78b85e0662bb55b3d5b54a50f34'/>
<id>b62327ec2de6d78b85e0662bb55b3d5b54a50f34</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(directive): added ng-open boolean directive</title>
<updated>2013-01-19T05:16:16+00:00</updated>
<author>
<name>David Chang</name>
</author>
<published>2013-01-18T04:08:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=b8bd4d5460d9952e9a3bb14992636b17859bd457'/>
<id>b8bd4d5460d9952e9a3bb14992636b17859bd457</id>
<content type='text'>
Closes# 1797 add ng-open attribute</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes# 1797 add ng-open attribute</pre>
</div>
</content>
</entry>
</feed>
