├── README.md
├── bower.json
├── demo.html
├── index.html
├── metadata.html
├── paper-calculator-key.html
├── paper-calculator-keygrid.html
├── paper-calculator-keypad.html
├── paper-calculator-math.html
├── paper-calculator-output.html
├── paper-calculator-panels.html
├── paper-calculator.html
└── workbench
├── output-test.html
└── panels-test.html
/README.md:
--------------------------------------------------------------------------------
1 | paper-calculator
2 | ================
3 |
--------------------------------------------------------------------------------
/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "paper-calculator",
3 | "private": true,
4 | "dependencies": {
5 | "core-media-query": "Polymer/core-media-query#master",
6 | "font-roboto": "Polymer/font-roboto#master",
7 | "paper-ripple": "Polymer/paper-ripple#master"
8 | }
9 | }
--------------------------------------------------------------------------------
/demo.html:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 | Paper Calculator
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
65 |
66 |
67 |
68 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/paper-calculator-key.html:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
56 |
57 |
62 |
63 | {{label}}
64 |
65 |
66 |
67 |
99 |
100 |
101 |
--------------------------------------------------------------------------------
/paper-calculator-keygrid.html:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
78 |
79 |
80 |
--------------------------------------------------------------------------------
/paper-calculator-keypad.html:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
123 |
124 |
125 |
--------------------------------------------------------------------------------
/paper-calculator-math.html:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/paper-calculator-output.html:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
91 |
92 |
93 |
94 |
95 |
{{expression}}
96 |
{{error}}
97 |
98 |
99 |
100 |
101 |
=
102 |
{{result}}
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
115 |
116 |
117 |
--------------------------------------------------------------------------------
/paper-calculator-panels.html:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
162 |
163 |
164 |
--------------------------------------------------------------------------------
/paper-calculator.html:
--------------------------------------------------------------------------------
1 |
9 |
10 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
245 |
246 |
247 |
--------------------------------------------------------------------------------
/workbench/output-test.html:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 | paper-calculator-output
15 |
16 |
17 |
18 |
19 |
20 |
21 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
--------------------------------------------------------------------------------
/workbench/panels-test.html:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 | paper-calculator-panels
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 | panel1
68 |
69 |
70 |
71 | panel2
72 |
73 | panel3
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
--------------------------------------------------------------------------------