<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/docs/src/templates/css, branch v1.2.0rc1</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>docs(header): replace logo.png with logo.svg</title>
<updated>2013-07-31T18:48:13+00:00</updated>
<author>
<name>Brenton</name>
</author>
<published>2013-07-15T23:00:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=24a4450f2b4bcc5b616fae34b6815252896d1756'/>
<id>24a4450f2b4bcc5b616fae34b6815252896d1756</id>
<content type='text'>
The current logo looks awful on high-density displays.  SVG is a
better choice because it can scale to any resolution without
increasing file size.

Amending #2775 to add support for IE 8 by falling back to existing PNG
with img.onerror

Using relative URLs as directed by @btford and @petebacondarwin.

(commit by Brenton Simpson - @appsforartists)

Closes #2874
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The current logo looks awful on high-density displays.  SVG is a
better choice because it can scale to any resolution without
increasing file size.

Amending #2775 to add support for IE 8 by falling back to existing PNG
with img.onerror

Using relative URLs as directed by @btford and @petebacondarwin.

(commit by Brenton Simpson - @appsforartists)

Closes #2874
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(ngdocs): all animation-supported directives working with docs examples and jsFiddle/Plunkr pages</title>
<updated>2013-07-30T04:22:05+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-07-29T23:45:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e1fe2ac2691e319473ed2bbca501fc6b641024e5'/>
<id>e1fe2ac2691e319473ed2bbca501fc6b641024e5</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): fix margin around nav-list items</title>
<updated>2013-07-27T16:54:56+00:00</updated>
<author>
<name>Ken Sheedlo</name>
</author>
<published>2013-07-26T18:10:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=3570005067b9dbac732b78c0013efb5c0e2a7b87'/>
<id>3570005067b9dbac732b78c0013efb5c0e2a7b87</id>
<content type='text'>
Closes #3363
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #3363
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(ngdocs): fix docs search to properly hide the X button when collapsed</title>
<updated>2013-07-27T06:49:54+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-07-26T18:53:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=658bcf96b9ab19286ad1bc18f4d5268287dbbcd6'/>
<id>658bcf96b9ab19286ad1bc18f4d5268287dbbcd6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngInclude): $animate refactoring + use transclusion</title>
<updated>2013-07-27T06:49:54+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-07-06T04:48:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=aa2133ad818d2e5c27cbd3933061797096356c8a'/>
<id>aa2133ad818d2e5c27cbd3933061797096356c8a</id>
<content type='text'>
BREAKING CHANGE: previously ngInclude only updated its content, after this change
ngInclude will recreate itself every time a new content is included. This ensures
that a single rootElement for all the included contents always exists, which makes
definition of css styles for animations much easier.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BREAKING CHANGE: previously ngInclude only updated its content, after this change
ngInclude will recreate itself every time a new content is included. This ensures
that a single rootElement for all the included contents always exists, which makes
definition of css styles for animations much easier.
</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>docs(minErr): Build minErr doc site</title>
<updated>2013-07-24T17:42:20+00:00</updated>
<author>
<name>Ken Sheedlo</name>
</author>
<published>2013-07-13T00:42:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4a7b6a4555a76b19dd217171fc0ddce6707bca95'/>
<id>4a7b6a4555a76b19dd217171fc0ddce6707bca95</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(ngdocs): fix improve button overlap</title>
<updated>2013-07-18T17:53:20+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-07-18T01:18:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e449c6df06d92136f9fab95caa29ac2e74b5e58b'/>
<id>e449c6df06d92136f9fab95caa29ac2e74b5e58b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(ngdoc): wrap all pages inside of a container tag for easy styling</title>
<updated>2013-07-12T21:43:24+00:00</updated>
<author>
<name>Matias Niemelä</name>
</author>
<published>2013-07-09T22:08:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=77c715d7caedf9dd56b07b451dc47480cac5aaff'/>
<id>77c715d7caedf9dd56b07b451dc47480cac5aaff</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>style(ngdocs): fix minor CSS issues</title>
<updated>2013-07-12T17:41:48+00:00</updated>
<author>
<name>Alex Olshansky</name>
</author>
<published>2013-07-10T11:31:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=ccda0f35090b1a6b3d5cd2288987ba77fcd1d4d7'/>
<id>ccda0f35090b1a6b3d5cd2288987ba77fcd1d4d7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
