docs(aio): resize images

This commit is contained in:
Jesus Rodriguez
2017-05-11 21:44:22 +02:00
committed by Pete Bacon Darwin
parent 90bc5b221b
commit b016984c04
63 changed files with 50 additions and 49 deletions

View File

@ -93,7 +93,7 @@ The app uses the Angular <code>Http</code> client to communicate via **XMLHttpRe
It works like this:
<figure>
<img src='generated/images/guide/http/http-toh.gif' alt="ToH mini app" width="250" height="222">
<img src='generated/images/guide/http/http-toh.gif' alt="ToH mini app">
</figure>
This demo has a single component, the `HeroListComponent`. Here's its template:
@ -496,7 +496,7 @@ Here is a simple search that shows suggestions from Wikipedia as the user
types in a text box:
<figure>
<img src='generated/images/guide/http/wiki-1.gif' alt="Wikipedia search app (v.1)" width="250" height="267">
<img src='generated/images/guide/http/wiki-1.gif' alt="Wikipedia search app (v.1)">
</figure>
Wikipedia offers a modern `CORS` API and a legacy `JSONP` search API. This example uses the latter.
@ -590,7 +590,7 @@ It should only make requests when the user *stops typing*.
Here's how it will work after refactoring:
<figure>
<img src='generated/images/guide/http/wiki-2.gif' alt="Wikipedia search app (v.2)" width="250" height="267">
<img src='generated/images/guide/http/wiki-2.gif' alt="Wikipedia search app (v.2)">
</figure>
### 2. Search when the search term changes