<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js, branch g3-v1.0.0-rc2</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix(forms): Remove double registering of form</title>
<updated>2012-03-16T19:06:29+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-03-16T07:55:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=1faafa31582c4e9413f48dc7d12f5b681f9fe9fd'/>
<id>1faafa31582c4e9413f48dc7d12f5b681f9fe9fd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(forms): Set ng-valid/ng-invalid correctly</title>
<updated>2012-03-16T19:06:29+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2012-03-16T00:17:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=08bfea183a850b29da270eac47f80b598cbe600f'/>
<id>08bfea183a850b29da270eac47f80b598cbe600f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(injector): infer _foo_ as foo</title>
<updated>2012-03-16T17:52:40+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-03-16T17:48:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f13dd3393dfb7a33565c9360342c193bc0bddcb6'/>
<id>f13dd3393dfb7a33565c9360342c193bc0bddcb6</id>
<content type='text'>
this is to enable nicer tests:

 describe('fooSvc', function() {
   var fooSvc;

   beforeEach(inject(function(_fooSvc_) {
     fooSvc = _fooSvc_;
   }));

   it('should do this thing', function() {
     //test fooSvc
   });
 });
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
this is to enable nicer tests:

 describe('fooSvc', function() {
   var fooSvc;

   beforeEach(inject(function(_fooSvc_) {
     fooSvc = _fooSvc_;
   }));

   it('should do this thing', function() {
     //test fooSvc
   });
 });
</pre>
</div>
</content>
</entry>
<entry>
<title>style(ngViewSpec): pretify some tests with $destroy events</title>
<updated>2012-03-16T17:52:40+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-03-16T17:52:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=bca96e7c7cc723a091241fddd6845d6de262a3c9'/>
<id>bca96e7c7cc723a091241fddd6845d6de262a3c9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(scope): broadcast $destroy event on scope destruction</title>
<updated>2012-03-16T16:41:05+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-03-16T16:41:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9b1aff905b638aa274a5fc8f88662df446d374bd'/>
<id>9b1aff905b638aa274a5fc8f88662df446d374bd</id>
<content type='text'>
perf testing shows that in chrome this change adds 5-15% overhead
when destroying 10k nested scopes where each scope has a $destroy listener
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
perf testing shows that in chrome this change adds 5-15% overhead
when destroying 10k nested scopes where each scope has a $destroy listener
</pre>
</div>
</content>
</entry>
<entry>
<title>style(ngSwitchSpec): fix typo</title>
<updated>2012-03-15T22:23:49+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-03-15T22:23:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=252d4548f981e18f496877f0f1a30a6c05c8600f'/>
<id>252d4548f981e18f496877f0f1a30a6c05c8600f</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): fix broken links</title>
<updated>2012-03-15T17:19:44+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-03-15T17:19:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=6abafcb4248f0a4374b3df0b67bf82b3c32194f3'/>
<id>6abafcb4248f0a4374b3df0b67bf82b3c32194f3</id>
<content type='text'>
Closes #793
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #793
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ng-switch): properly destroy child scopes</title>
<updated>2012-03-14T21:33:20+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-03-14T20:03:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2315d9b3610994b36c44e4a97fb1427d59471ce8'/>
<id>2315d9b3610994b36c44e4a97fb1427d59471ce8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(release): start the 1.0.0rc2 silence-absorption iteration</title>
<updated>2012-03-14T20:45:44+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-03-14T20:43:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8fd1b748721a6312c9d4340744a012143e4d5ef2'/>
<id>8fd1b748721a6312c9d4340744a012143e4d5ef2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>style(changelog): Fix some typos</title>
<updated>2012-03-14T17:13:03+00:00</updated>
<author>
<name>alkis</name>
</author>
<published>2012-03-14T10:28:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=02091b2c1ec68cfc5b4b88295575cfdfce71fad5'/>
<id>02091b2c1ec68cfc5b4b88295575cfdfce71fad5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
