<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/css, branch v1.2.0-rc.3</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>fix(ngShowHide): change the .ng-hide CSS class to use an !important flag</title>
<updated>2013-08-03T06:55:53+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-07-30T00:32:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=246c1439b502b06823650505cbe4a3848b6fa5a3'/>
<id>246c1439b502b06823650505cbe4a3848b6fa5a3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(ngAnimate): complete rewrite of animations</title>
<updated>2013-07-27T06:49:54+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-06-18T17:59:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=81923f1e41560327f7de6e8fddfda0d2612658f3'/>
<id>81923f1e41560327f7de6e8fddfda0d2612658f3</id>
<content type='text'>
- ngAnimate directive is gone and was replaced with class based animations/transitions
- support for triggering animations on css class additions and removals
- done callback was added to all animation apis
- $animation and $animator where merged into a single $animate service with api:
  - $animate.enter(element, parent, after, done);
  - $animate.leave(element, done);
  - $animate.move(element, parent, after, done);
  - $animate.addClass(element, className, done);
  - $animate.removeClass(element, className, done);

BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- ngAnimate directive is gone and was replaced with class based animations/transitions
- support for triggering animations on css class additions and removals
- done callback was added to all animation apis
- $animation and $animator where merged into a single $animate service with api:
  - $animate.enter(element, parent, after, done);
  - $animate.leave(element, done);
  - $animate.move(element, parent, after, done);
  - $animate.addClass(element, className, done);
  - $animate.removeClass(element, className, done);

BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngCloak): hide element even when CSS 'display' is set</title>
<updated>2013-07-03T05:57:34+00:00</updated>
<author>
<name>Vineet Kumar</name>
</author>
<published>2013-06-26T03:37:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=3ffddad100e993403d13137387d0685466b46b2b'/>
<id>3ffddad100e993403d13137387d0685466b46b2b</id>
<content type='text'>
Previously an element like
&lt;div class="foo ng-cloak"&gt;...&lt;/div&gt;
would still be annoyingly visible if it matched a CSS rule like
.foo { display: inline-block; }, overriding ng-cloak's display: none.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously an element like
&lt;div class="foo ng-cloak"&gt;...&lt;/div&gt;
would still be annoyingly visible if it matched a CSS rule like
.foo { display: inline-block; }, overriding ng-cloak's display: none.
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(directives): connect new compiler</title>
<updated>2012-01-25T19:50:37+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-11-23T05:28:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9ee2cdff44e7d496774b340de816344126c457b3'/>
<id>9ee2cdff44e7d496774b340de816344126c457b3</id>
<content type='text'>
- turn everything into a directive
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- turn everything into a directive
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(filter): filters are now injectable and services</title>
<updated>2011-11-15T04:31:09+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-11-03T22:59:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=cb6f832f38b11499a6d1dd2caf14d15e68211635'/>
<id>cb6f832f38b11499a6d1dd2caf14d15e68211635</id>
<content type='text'>
BREAK:
 - removed CSS support from filters
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BREAK:
 - removed CSS support from filters
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(css): ng:form should always be a block element</title>
<updated>2011-10-31T05:26:32+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-10-29T05:01:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=02dc81bae0011b7ae4190363be5fdd5db420aca9'/>
<id>02dc81bae0011b7ae4190363be5fdd5db420aca9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(forms): new and improved forms</title>
<updated>2011-10-11T18:01:45+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-09-08T20:56:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4f78fd692c0ec51241476e6be9a4df06cd62fdd6'/>
<id>4f78fd692c0ec51241476e6be9a4df06cd62fdd6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(bindings): remove the decoration of the DOM with errors.</title>
<updated>2011-10-11T17:53:07+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-08-25T04:50:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e86c435349fd68ece54c5e31b834a3848387c933'/>
<id>e86c435349fd68ece54c5e31b834a3848387c933</id>
<content type='text'>
Only $exceptionHandler gets notified now.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Only $exceptionHandler gets notified now.
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(hover): delete hover service</title>
<updated>2011-10-11T17:53:06+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-08-25T04:28:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=1942861472a4cd8d2d72f2ed54ee2b63be5d68b8'/>
<id>1942861472a4cd8d2d72f2ed54ee2b63be5d68b8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(ng:cloak): add ng:cloak directive</title>
<updated>2011-08-24T22:01:49+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2011-08-20T07:24:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=30753cb1310893841fdb0b17c075b6a72e8c8d8a'/>
<id>30753cb1310893841fdb0b17c075b6a72e8c8d8a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
