<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js, branch v1.2.11</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>chore(release): cut v1.2.11 release</title>
<updated>2014-02-03T17:40:03+00:00</updated>
<author>
<name>jenkins</name>
</author>
<published>2014-02-03T17:40:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d5eedf38db6e6b49fb646cd7443556790c67207d'/>
<id>d5eedf38db6e6b49fb646cd7443556790c67207d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(changelog): release notes for 1.2.11</title>
<updated>2014-02-03T17:28:45+00:00</updated>
<author>
<name>Tobias Bosch</name>
</author>
<published>2014-02-03T17:28:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c0c0b2b67461b2c6521ae290fb1a7ea19ff075e8'/>
<id>c0c0b2b67461b2c6521ae290fb1a7ea19ff075e8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngResource): don't append number to '$' in url param value when encoding URI</title>
<updated>2014-02-03T16:12:07+00:00</updated>
<author>
<name>Caitlin Potter</name>
</author>
<published>2014-01-27T19:04:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ce1f1f97f0ebf77941b2bdaf5e8352d33786524d'/>
<id>ce1f1f97f0ebf77941b2bdaf5e8352d33786524d</id>
<content type='text'>
Previously, if a URL parameter value included a $, it would replace the dollar sign with a literal
'$1' for mysterious reasons. Using a function rather than a replacement string circumvents this
behaviour and produces a more expected result.

Closes #6003
Closes #6004
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, if a URL parameter value included a $, it would replace the dollar sign with a literal
'$1' for mysterious reasons. Using a function rather than a replacement string circumvents this
behaviour and produces a more expected result.

Closes #6003
Closes #6004
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(animations): ngClass usage should link to ngClass documentation</title>
<updated>2014-02-03T14:14:45+00:00</updated>
<author>
<name>Alan Rubin</name>
</author>
<published>2014-02-03T09:46:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8205158e477f1ea235feba3087143e0d3e5e52ec'/>
<id>8205158e477f1ea235feba3087143e0d3e5e52ec</id>
<content type='text'>
Fixing reference to ngClass documentation

Closes #6089
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixing reference to ngClass documentation

Closes #6089
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(http): make jshint happy</title>
<updated>2014-02-01T01:03:30+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2014-02-01T01:03:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6609e3da76dd898cfe85f75f23ab2e39fee65fe5'/>
<id>6609e3da76dd898cfe85f75f23ab2e39fee65fe5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($http): update httpBackend to use ActiveXObject on IE8 if necessary</title>
<updated>2014-02-01T00:52:42+00:00</updated>
<author>
<name>Jorg</name>
</author>
<published>2014-01-08T01:23:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ef210e5e119db4f5bfc9d2428b19f9b335c4f976'/>
<id>ef210e5e119db4f5bfc9d2428b19f9b335c4f976</id>
<content type='text'>
window.XMLHttpRequest is not always available in IE8 despite it not running in quirks mode,
in which case Angular should be using the ActiveXObject instead. Just checking the browser
version is taking too many shortcuts.

Closes #5677
Closes #5679
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
window.XMLHttpRequest is not always available in IE8 despite it not running in quirks mode,
in which case Angular should be using the ActiveXObject instead. Just checking the browser
version is taking too many shortcuts.

Closes #5677
Closes #5679
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(guide/templates.css-styling): fix "`{{}}`"</title>
<updated>2014-02-01T00:31:06+00:00</updated>
<author>
<name>Stéphane Reynaud</name>
</author>
<published>2014-01-23T09:37:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=fd61e222c337380af09ff08dc3fe73f17e9a7a8e'/>
<id>fd61e222c337380af09ff08dc3fe73f17e9a7a8e</id>
<content type='text'>
Replace {{}} to `{{}}` so that "{{}}" is rendered in the HTML page

Closes #5950
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Replace {{}} to `{{}}` so that "{{}}" is rendered in the HTML page

Closes #5950
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($q): make $q.reject support `finally` and `catch`</title>
<updated>2014-01-31T19:38:06+00:00</updated>
<author>
<name>Lucas Galfasó</name>
</author>
<published>2014-01-31T18:22:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=074b0675a1f97dce07f520f1ae6198ed3c604000'/>
<id>074b0675a1f97dce07f520f1ae6198ed3c604000</id>
<content type='text'>
Add support for the functions `finally` and `catch` to the
promise returned by `$q.reject`

Closes #6048
Closes #6076
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add support for the functions `finally` and `catch` to the
promise returned by `$q.reject`

Closes #6048
Closes #6076
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($compile): retain CSS classes added in cloneAttachFn on asynchronous directives</title>
<updated>2014-01-31T17:45:35+00:00</updated>
<author>
<name>Caitlin Potter</name>
</author>
<published>2014-01-03T16:50:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=5ed721b9b5e95ae08450e1ae9d5202e7f3f79295'/>
<id>5ed721b9b5e95ae08450e1ae9d5202e7f3f79295</id>
<content type='text'>
Previously, classes added to asynchronous directive elements during the clone
attach function would not persist after the node is merged with the template, prior
to linking. This change corrects this behaviour and brings it in line with synchronous
directives.

Closes #5439
Closes #5617
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, classes added to asynchronous directive elements during the clone
attach function would not persist after the node is merged with the template, prior
to linking. This change corrects this behaviour and brings it in line with synchronous
directives.

Closes #5439
Closes #5617
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(travis): remove BrowserStack credentials</title>
<updated>2014-01-31T15:48:36+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2014-01-31T15:48:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c22ab5d2e28605462ba77f6c02e99efdd24338a3'/>
<id>c22ab5d2e28605462ba77f6c02e99efdd24338a3</id>
<content type='text'>
Closes #5596</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #5596</pre>
</div>
</content>
</entry>
</feed>
