<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/ng, branch v1.2.2</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>chore(style): fix missing indentation in httpBackend from a3172a2</title>
<updated>2013-11-22T15:03:12+00:00</updated>
<author>
<name>Caitlin Potter</name>
</author>
<published>2013-11-22T13:57:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0f7c4ca671ac807c53510372bb24d5cfec0bc7f5'/>
<id>0f7c4ca671ac807c53510372bb24d5cfec0bc7f5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($httpBackend): only IE8 and below can't use `script.onload` for JSONP</title>
<updated>2013-11-22T13:45:55+00:00</updated>
<author>
<name>Pete Bacon Darwin</name>
</author>
<published>2013-11-22T13:22:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=a3172a285fd74b5aa6c8d68a4988c767c06f549c'/>
<id>a3172a285fd74b5aa6c8d68a4988c767c06f549c</id>
<content type='text'>
IE8, IE9 and IE10 can use `script.onreadystate` so up till now we have been using this
if the sniffer says we are on IE.
But IE11 now does not support `script.onreadystate` and only supports the more standard
`script.onload` and `script.onerror`.
IE9 and IE10 do support `script.onload` and `script.onerror`. So now we only test whether
we are on IE8 or earlier before using `script.onreadystate`.
See http://pieisgood.org/test/script-link-events/

jQuery just uses all these handlers at once and hopes for the best, but since IE9 and IE10
support both sets of handlers, this could cause the handlers to be run more than once.

jQuery also notes that there is a potential memory leak in IE unless we remove the handlers
from the script object once they are run.  So we are doing this too, now.

Closes #4523
Closes #4527
Closes #4922
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
IE8, IE9 and IE10 can use `script.onreadystate` so up till now we have been using this
if the sniffer says we are on IE.
But IE11 now does not support `script.onreadystate` and only supports the more standard
`script.onload` and `script.onerror`.
IE9 and IE10 do support `script.onload` and `script.onerror`. So now we only test whether
we are on IE8 or earlier before using `script.onreadystate`.
See http://pieisgood.org/test/script-link-events/

jQuery just uses all these handlers at once and hopes for the best, but since IE9 and IE10
support both sets of handlers, this could cause the handlers to be run more than once.

jQuery also notes that there is a potential memory leak in IE unless we remove the handlers
from the script object once they are run.  So we are doing this too, now.

Closes #4523
Closes #4527
Closes #4922
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($parse): allow for new lines in expr when promise unwrapping is on</title>
<updated>2013-11-22T08:19:08+00:00</updated>
<author>
<name>rodyhaddad</name>
</author>
<published>2013-10-30T19:14:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=40647b179c473f3f470bb1b3237d6f006269582f'/>
<id>40647b179c473f3f470bb1b3237d6f006269582f</id>
<content type='text'>
Previously, when unwrapping promises was set to `true`,
an error would occur if a parsed expression had a
new line in it.
This was because when generating the `evaledFnGetter` code,
a new line in an parsed expression would create a new line
in a JS string in that code, which is illegal. That is:
```js
pw("A+
B")
```

Closes #4718
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, when unwrapping promises was set to `true`,
an error would occur if a parsed expression had a
new line in it.
This was because when generating the `evaledFnGetter` code,
a new line in an parsed expression would create a new line
in a JS string in that code, which is illegal. That is:
```js
pw("A+
B")
```

Closes #4718
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($compile): secure form[action] &amp; iframe[srcdoc]</title>
<updated>2013-11-22T07:15:15+00:00</updated>
<author>
<name>Chirayu Krishnappa</name>
</author>
<published>2013-11-12T23:32:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0421cb4200e672818ed10996e92311404c150c3a'/>
<id>0421cb4200e672818ed10996e92311404c150c3a</id>
<content type='text'>
Require bindings to form[action] to be $sce.RESOURCE_URL and bindings to
iframe[srcdoc] to be $sce.HTML

Closes #4927
Closes #4933
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Require bindings to form[action] to be $sce.RESOURCE_URL and bindings to
iframe[srcdoc] to be $sce.HTML

Closes #4927
Closes #4933
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(httpBackend): should not read response data when request is aborted</title>
<updated>2013-11-22T07:09:46+00:00</updated>
<author>
<name>Gonzalo Ruiz de Villa</name>
</author>
<published>2013-11-13T20:24:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6f1050df4fa885bd59ce85adbef7350ea93911a3'/>
<id>6f1050df4fa885bd59ce85adbef7350ea93911a3</id>
<content type='text'>
When a request is aborted, it makes no sense to read the response headers or text.
Also in IE9, trying to read data (either response headers or text) from an aborted request
throws an Error c00c023f.

Fixes #4913
Closes #4940
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When a request is aborted, it makes no sense to read the response headers or text.
Also in IE9, trying to read data (either response headers or text) from an aborted request
throws an Error c00c023f.

Fixes #4913
Closes #4940
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngInclude): Don't throw when the ngInclude element contains content with directives.</title>
<updated>2013-11-22T06:20:11+00:00</updated>
<author>
<name>Tobias Bosch</name>
</author>
<published>2013-11-22T05:54:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0a7cbb33b06778833a4d99b1868cc07690a827a7'/>
<id>0a7cbb33b06778833a4d99b1868cc07690a827a7</id>
<content type='text'>
Related to #5069
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Related to #5069
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($compile): ensure CSS classes are added and removed only when necessary</title>
<updated>2013-11-22T01:47:44+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-11-19T03:13:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0cd7e8f22721f62b62440bb059ae764ebbe7b42a'/>
<id>0cd7e8f22721f62b62440bb059ae764ebbe7b42a</id>
<content type='text'>
When $compile interpolates a CSS class attribute expression it will
do so by comparing the CSS class value already present on the element.
This may lead to unexpected results when dealing with ngClass values being
added and removed therefore it is best that both compile and ngClass delegate
addClass/removeClass operations to the same block of code.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When $compile interpolates a CSS class attribute expression it will
do so by comparing the CSS class value already present on the element.
This may lead to unexpected results when dealing with ngClass values being
added and removed therefore it is best that both compile and ngClass delegate
addClass/removeClass operations to the same block of code.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngController): fix issue with ngInclude on the same element</title>
<updated>2013-11-21T17:52:34+00:00</updated>
<author>
<name>Andrew Silluron-Gonzalez</name>
</author>
<published>2013-10-16T18:35:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6288cf5ca471b0615a026fdb4db3ba242c9d8f88'/>
<id>6288cf5ca471b0615a026fdb4db3ba242c9d8f88</id>
<content type='text'>
This changes the priority of ngController to 500 so that it takes precedence
over ngInclude.

Closes #4431, #4521
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This changes the priority of ngController to 500 so that it takes precedence
over ngInclude.

Closes #4431, #4521
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(input): hold listener during text composition</title>
<updated>2013-11-21T17:46:33+00:00</updated>
<author>
<name>Chia-liang Kao</name>
</author>
<published>2013-10-28T16:42:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=a4e6d962d78b26f5112d48c4f88c1e6234d0cae7'/>
<id>a4e6d962d78b26f5112d48c4f88c1e6234d0cae7</id>
<content type='text'>
When composing text in CJKV, intermediate buffer for unfinished text should not
be updating the bound scope variables.

Closes #4684
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When composing text in CJKV, intermediate buffer for unfinished text should not
be updating the bound scope variables.

Closes #4684
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor($sce): Use $sniffer instead of $document for feature detection.</title>
<updated>2013-11-20T23:12:39+00:00</updated>
<author>
<name>Tobias Bosch</name>
</author>
<published>2013-11-20T04:42:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ec3c4f94c79e23c29abcde6e1d2f6eaf05e0664c'/>
<id>ec3c4f94c79e23c29abcde6e1d2f6eaf05e0664c</id>
<content type='text'>
Also adds `$sniffer.msieDocumentMode` property.

Closes #4931
Closes #5045
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also adds `$sniffer.msieDocumentMode` property.

Closes #4931
Closes #5045
</pre>
</div>
</content>
</entry>
</feed>
