<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js, branch v0.9.19</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>cutting the 0.9.19 canine-psychokinesis release</title>
<updated>2011-08-21T08:12:34+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-08-20T07:45:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=710a27030ef869900ebd05a24ff2e7dd049a914d'/>
<id>710a27030ef869900ebd05a24ff2e7dd049a914d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(docs): work around the lame ng:show directive</title>
<updated>2011-08-21T08:12:34+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-08-21T07:24:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=19aa16c8d501766194aa19512d2bd9147ccac641'/>
<id>19aa16c8d501766194aa19512d2bd9147ccac641</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(docs): change docs.css to avoid css clashes in buzz example</title>
<updated>2011-08-21T08:12:34+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-08-21T06:52:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4a1972c71b04decac901aeafce3a07e3a5612b63'/>
<id>4a1972c71b04decac901aeafce3a07e3a5612b63</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ng:options): remove memory leak caused by scope.</title>
<updated>2011-08-21T08:12:34+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-08-21T05:32:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6aa04b1db48853340d720e0a1a3e325ac523a06f'/>
<id>6aa04b1db48853340d720e0a1a3e325ac523a06f</id>
<content type='text'>
$new can't be used for creation of temporary scopes because it registers
an onEval listener that doesn't go away and keeps the scope around, we
must use inherit(scope) instead to avoid this issue.

The issue does not apply to the master branch with the new scope which
has a scope descructor to clean up this mess.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
$new can't be used for creation of temporary scopes because it registers
an onEval listener that doesn't go away and keeps the scope around, we
must use inherit(scope) instead to avoid this issue.

The issue does not apply to the master branch with the new scope which
has a scope descructor to clean up this mess.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(sample): Fix for jsFiddle integration</title>
<updated>2011-08-19T20:29:26+00:00</updated>
<author>
<name>Di Peng</name>
</author>
<published>2011-08-19T19:06:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ac6e1306ec2126f9c8e67b4a26d8f03001abf73d'/>
<id>ac6e1306ec2126f9c8e67b4a26d8f03001abf73d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($route): add reloadOnSearch route param to avoid reloads</title>
<updated>2011-08-19T19:05:52+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-08-15T15:34:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e004378d100ce767a1107180102790a9a360644e'/>
<id>e004378d100ce767a1107180102790a9a360644e</id>
<content type='text'>
In order to avoid unnecesary route reloads when just hashSearch part
of the url changes, it is now possible to disable this behavior by
setting reloadOnSearch param of the route declaration to false.

Closes #354
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In order to avoid unnecesary route reloads when just hashSearch part
of the url changes, it is now possible to disable this behavior by
setting reloadOnSearch param of the route declaration to false.

Closes #354
</pre>
</div>
</content>
</entry>
<entry>
<title>feat($xhr,$resource): expose response headers in callbacks</title>
<updated>2011-08-19T08:20:45+00:00</updated>
<author>
<name>Karl Seamon</name>
</author>
<published>2011-07-29T22:32:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4ec1d8ee86e3138fb91543ca0dca28463895c090'/>
<id>4ec1d8ee86e3138fb91543ca0dca28463895c090</id>
<content type='text'>
all $xhr*, $resource and related mocks now have access to headers from
their callbacks
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
all $xhr*, $resource and related mocks now have access to headers from
their callbacks
</pre>
</div>
</content>
</entry>
<entry>
<title>fix($resource): properly call error callback when resource is called with two arguments</title>
<updated>2011-08-19T08:17:20+00:00</updated>
<author>
<name>Karl Seamon</name>
</author>
<published>2011-08-18T19:07:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c37bfde9eb31556ee1eb146795b0c1f1504a4a26'/>
<id>c37bfde9eb31556ee1eb146795b0c1f1504a4a26</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(test): toHaveBeenCalledOnce jasmine matcher</title>
<updated>2011-08-19T08:17:09+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-06-23T14:52:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f6bcbb53f056372d6778fedfc793435fc2e88e11'/>
<id>f6bcbb53f056372d6778fedfc793435fc2e88e11</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>doc(sample): Add javascript sandbox integration (jsFiddle)</title>
<updated>2011-08-19T08:16:56+00:00</updated>
<author>
<name>dandoyon</name>
</author>
<published>2011-08-11T03:53:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=53a4580d956248cfef84c4d11350a54d27211cf7'/>
<id>53a4580d956248cfef84c4d11350a54d27211cf7</id>
<content type='text'>
Change doc_widget.js to:

- render "edit in jsfiddle" button next to all examples
- make opt out certain examples by adding jsfiddle="false" attribute to
  doc:source element
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change doc_widget.js to:

- render "edit in jsfiddle" button next to all examples
- make opt out certain examples by adding jsfiddle="false" attribute to
  doc:source element
</pre>
</div>
</content>
</entry>
</feed>
