Add an exponential backoff to rechecking the app list doodle.
[chromium-blink-merge.git] / third_party / polymer / components-chromium / core-ajax / core-ajax.html
blob2ea9a41706d9f3bf5864cce97d931648b458d0e7
1 <!--
2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
3 This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
5 The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
6 Code distributed by Google as part of the polymer project is also
7 subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
8 --><!--
9 @group Polymer Core Elements
11 The `core-ajax` element exposes `XMLHttpRequest` functionality.
13 <core-ajax
14 auto
15 url="http://gdata.youtube.com/feeds/api/videos/"
16 params='{"alt":"json", "q":"chrome"}'
17 handleAs="json"
18 on-core-response="{{handleResponse}}"></core-ajax>
20 With `auto` set to `true`, the element performs a request whenever
21 its `url`, `params` or `body` properties are changed.
23 Note: The `params` attribute must be double quoted JSON.
25 You can trigger a request explicitly by calling `go` on the
26 element.
28 @element core-ajax
29 @status beta
30 @homepage github.io
31 --><html><head><link rel="import" href="core-xhr.html">
32 </head><body><polymer-element name="core-ajax" hidden="" attributes="url handleAs auto params response error method headers body contentType withCredentials progress loading" assetpath="">
34 </polymer-element>
35 <script charset="utf-8" src="core-ajax-extracted.js"></script></body></html>