<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src, branch v0.9.19</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<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>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>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>
<entry>
<title>refactor(jqLite): remove jqLite show/hide support</title>
<updated>2011-08-19T07:59:44+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-08-14T10:24:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4c8eaa1eb05ba98d30ff83f4420d6fcd69045d99'/>
<id>4c8eaa1eb05ba98d30ff83f4420d6fcd69045d99</id>
<content type='text'>
it turns out that even with our tricks, jqLite#show is not usable in
practice and definitely not on par with jQuery. so rather than
introducing half-baked apis which introduce issues, I'm removing them.

I also removed show/hide uses from docs, since they are not needed.

Breaks jqLite.hide/jqLite.show which are no longer available.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
it turns out that even with our tricks, jqLite#show is not usable in
practice and definitely not on par with jQuery. so rather than
introducing half-baked apis which introduce issues, I'm removing them.

I also removed show/hide uses from docs, since they are not needed.

Breaks jqLite.hide/jqLite.show which are no longer available.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(directives): make ng:class-even/odd work with ng:class</title>
<updated>2011-08-19T07:14:05+00:00</updated>
<author>
<name>Di Peng</name>
</author>
<published>2011-08-10T01:24:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6fb4bf4c543b3e48375221a9c5f1791af31a3ffc'/>
<id>6fb4bf4c543b3e48375221a9c5f1791af31a3ffc</id>
<content type='text'>
Closes #508
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #508
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(bootstrap): missing var failed strict mode boot</title>
<updated>2011-08-19T06:47:02+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-08-12T15:47:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=cc604b6e26e22c04ef64f077fd3177bbf60533f2'/>
<id>cc604b6e26e22c04ef64f077fd3177bbf60533f2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>doc($browser): remove duplication of $browser to docs</title>
<updated>2011-08-19T06:46:51+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-08-10T09:51:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=99ee6f275af9aff33f24c86138d79ec30e77dcb3'/>
<id>99ee6f275af9aff33f24c86138d79ec30e77dcb3</id>
<content type='text'>
This was causing to show up the "$browser" twice in the menu.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This was causing to show up the "$browser" twice in the menu.
</pre>
</div>
</content>
</entry>
<entry>
<title>doc($browser): hide $browser.notifyWhenNoOustandingRequest method</title>
<updated>2011-08-19T06:46:21+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-08-10T09:50:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=21c4919a5b79e10729b36b65559f5d1ca5408ff4'/>
<id>21c4919a5b79e10729b36b65559f5d1ca5408ff4</id>
<content type='text'>
Closes #506
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #506
</pre>
</div>
</content>
</entry>
</feed>
