├── README.md
├── bower.json
├── core-ajax.html
├── core-xhr.html
├── demo-progress.html
├── demo.html
├── index.html
├── metadata.html
└── test
├── core-ajax-progress.html
├── core-ajax-race.html
├── core-ajax.html
└── index.html
/README.md:
--------------------------------------------------------------------------------
1 | core-ajax
2 | =========
3 |
4 | **This element is compatible with Polymer 0.5 and lower only, and will be deprecated.**
5 | You can check out a similar 0.8-compatible version of this element at [https://github.com/polymerelements/iron-ajax](https://github.com/polymerelements/iron-ajax)
6 |
--------------------------------------------------------------------------------
/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "core-ajax",
3 | "private": true,
4 | "dependencies": {
5 | "polymer": "Polymer/polymer#master"
6 | },
7 | "devDependencies": {
8 | "polymer-test-tools": "Polymer/polymer-test-tools#master"
9 | }
10 | }
--------------------------------------------------------------------------------
/core-ajax.html:
--------------------------------------------------------------------------------
1 |
9 |
10 |
34 |
35 |
36 |
434 |
435 |
--------------------------------------------------------------------------------
/core-xhr.html:
--------------------------------------------------------------------------------
1 |
9 |
22 |
23 |
24 |
25 |
26 |
27 |
115 |
116 |
117 |
--------------------------------------------------------------------------------
/demo-progress.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Race condition
7 |
8 |
9 |
10 |
11 |
12 |
13 |
21 |
22 |
29 |
30 |
31 |
32 | Loading...
33 |
34 |
35 | Loaded!
36 |
37 |
38 |
39 |
43 |
44 |
45 |
46 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
--------------------------------------------------------------------------------
/demo.html:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
13 | core-ajax
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
24 |
25 |
26 | {{title.$t}}
27 |
28 |
29 |
41 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/metadata.html:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/test/core-ajax-progress.html:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 | core-ajax
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
27 |
28 |
31 |
107 |
108 |
109 |
--------------------------------------------------------------------------------
/test/core-ajax-race.html:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 | core-ajax
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
27 |
28 |
33 |
80 |
81 |
82 |
--------------------------------------------------------------------------------
/test/core-ajax.html:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 | core-ajax
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
285 |
286 |
287 |
288 |
--------------------------------------------------------------------------------
/test/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
16 |
17 |
18 |
--------------------------------------------------------------------------------