<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/test, branch v1.1.5</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>chore(ngdocs): move angular-bootstrap.js to be generated only inside the docs and remove from the build process</title>
<updated>2013-05-20T21:27:34+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-05-16T18:55:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2f571a9c830df814902fbdda1e9240b36bb64e3e'/>
<id>2f571a9c830df814902fbdda1e9240b36bb64e3e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($http): add support for aborting via timeout promises</title>
<updated>2013-05-20T21:15:04+00:00</updated>
<author>
<name>David Bennett</name>
</author>
<published>2013-04-27T15:22:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9f4f5937112655a9881d3281da8e72035bc8b180'/>
<id>9f4f5937112655a9881d3281da8e72035bc8b180</id>
<content type='text'>
If the timeout argument is a promise, abort the request when it is resolved.
Implemented by adding support to $httpBackend service and $httpBackend mock
service.

This api can also be used to explicitly abort requests while keeping the
communication between the deffered and promise unidirectional.

Closes #1159
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If the timeout argument is a promise, abort the request when it is resolved.
Implemented by adding support to $httpBackend service and $httpBackend mock
service.

This api can also be used to explicitly abort requests while keeping the
communication between the deffered and promise unidirectional.

Closes #1159
</pre>
</div>
</content>
</entry>
<entry>
<title>test($parse): improve clarity of ternary tests</title>
<updated>2013-05-17T05:46:09+00:00</updated>
<author>
<name>Zach Snow</name>
</author>
<published>2013-05-12T20:12:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2a7043fa2327ecb681f306612a96dbf29ec499e7'/>
<id>2a7043fa2327ecb681f306612a96dbf29ec499e7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($animator): provide support for custom animation events</title>
<updated>2013-05-16T23:17:46+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-05-13T21:37:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c53d4c94300c97dd005f9a0cbdbfa387294b9026'/>
<id>c53d4c94300c97dd005f9a0cbdbfa387294b9026</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test($animator): ensure invalid $sniffer.transitions and $sniffer.animations flags are caught in animation spec code</title>
<updated>2013-05-16T23:17:46+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-05-16T03:10:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=24ed61cf5c56f236a31069e60fbfdd3b578fbef3'/>
<id>24ed61cf5c56f236a31069e60fbfdd3b578fbef3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(jqLite): pass a dummy event into triggerHandler</title>
<updated>2013-05-16T23:15:31+00:00</updated>
<author>
<name>Julie</name>
</author>
<published>2013-04-15T22:52:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=0401a7f598ef9a36ffe1f217e1a98961046fa551'/>
<id>0401a7f598ef9a36ffe1f217e1a98961046fa551</id>
<content type='text'>
Previously, anchor elements could not be used with triggerHandler because
triggerHandler passes null as the event, and any anchor element with an empty
href automatically calls event.preventDefault(). Instead, pass a dummy event
when using triggerHandler, similar to what full jQuery does. Modified from
PR #2379.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, anchor elements could not be used with triggerHandler because
triggerHandler passes null as the event, and any anchor element with an empty
href automatically calls event.preventDefault(). Instead, pass a dummy event
when using triggerHandler, similar to what full jQuery does. Modified from
PR #2379.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($parse): add support for ternary operators to parser</title>
<updated>2013-05-16T21:30:37+00:00</updated>
<author>
<name>Zach Snow</name>
</author>
<published>2013-04-23T00:42:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6798fec4390a72b7943a49505f8a245b6016c84b'/>
<id>6798fec4390a72b7943a49505f8a245b6016c84b</id>
<content type='text'>
Add '?' token to lexer, add ternary rule to parser at
(hopefully) proper precedence and associativity (based
on https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Operators/Operator_Precedence).
Since (exp1 &amp;&amp; exp2 || exp3) is supported by the parser,
and (exp1 ? exp2 : exp3) works the same way, it seems
reasonable to add this minor form of control to templates
(see #719).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add '?' token to lexer, add ternary rule to parser at
(hopefully) proper precedence and associativity (based
on https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Operators/Operator_Precedence).
Since (exp1 &amp;&amp; exp2 || exp3) is supported by the parser,
and (exp1 ? exp2 : exp3) works the same way, it seems
reasonable to add this minor form of control to templates
(see #719).
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($resource): null default param results in TypeError</title>
<updated>2013-05-16T21:26:08+00:00</updated>
<author>
<name>Ryan Schumacher</name>
</author>
<published>2013-04-03T15:40:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=cefbcd470d4c9020cc3487b2326d45058ef831e2'/>
<id>cefbcd470d4c9020cc3487b2326d45058ef831e2</id>
<content type='text'>
Fixes issue when setting a default param as `null` error
`TypeError: Cannot read property 'charAt' of null`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes issue when setting a default param as `null` error
`TypeError: Cannot read property 'charAt' of null`
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($http): add a default content type for PATH requests</title>
<updated>2013-05-16T21:05:05+00:00</updated>
<author>
<name>Daniel Stockton</name>
</author>
<published>2013-05-11T16:23:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f9b897de4b5cc438515cbb54519fbdf6242f5858'/>
<id>f9b897de4b5cc438515cbb54519fbdf6242f5858</id>
<content type='text'>
The default header is now application/json which while not perfect
in all cases is better than the browser default application/xml.

The new headers also makes for better compatibility with Rails 4
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The default header is now application/json which while not perfect
in all cases is better than the browser default application/xml.

The new headers also makes for better compatibility with Rails 4
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(ngSrcset): add new ngSrcset directive</title>
<updated>2013-05-14T20:29:21+00:00</updated>
<author>
<name>Samuel Santos</name>
</author>
<published>2013-05-07T16:45:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d551d72924f7c43a043e4760ff05d7389e310f99'/>
<id>d551d72924f7c43a043e4760ff05d7389e310f99</id>
<content type='text'>
In line with ngSrc and ngHref, this new directive ensures that the
`srcset` HTML5 attribute does not include a pre-interpolated string.
Without it the browser will fetch from the URL with the literal text
`{{hash}}` until AngularJS replaces the expression inside `{{hash}}`.

Closes #2601
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In line with ngSrc and ngHref, this new directive ensures that the
`srcset` HTML5 attribute does not include a pre-interpolated string.
Without it the browser will fetch from the URL with the literal text
`{{hash}}` until AngularJS replaces the expression inside `{{hash}}`.

Closes #2601
</pre>
</div>
</content>
</entry>
</feed>
