-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdemo.html
90 lines (73 loc) · 2.02 KB
/
demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>lens-input-enigma Demo</title>
<script src="../webcomponentsjs/webcomponents.js"></script>
<link rel="import" href="lens-input-enigma.html">
<style>
body {
font-family: sans-serif;
font-size: 14px;
}
pre {
border: 1px solid #EEE;
font-size: 12px;
max-width: 300px;
max-height: 300px;
overflow: scroll;
}
#component {
border: 1px solid #BBB;
margin: 10px;
padding: 5px;
display: block;
width: 300px;
}
.component::before, .component::after {
content: '\2794';
position: absolute;
top: 50%;
}
.component::before {
right: -15px;
}
.component::after {
left: -15px;
}
section {
display: inline-block;
margin: 8px;
vertical-align: top;
position: relative;
}
html /deep/ input[is=core-input] {
border-bottom: 1px solid #E5E5E5 !important;
}
.count {
float: right;
font-size: 12px;
}
</style>
</head>
<body unresolved>
<template id="auto-bind-demo" is="auto-binding">
<script>
PolymerExpressions.prototype.json = function(object) {
return JSON.stringify(object, undefined, 2);
};
</script>
<p> lens-input-enigma loads data from the <a href="http://enigma.io">Enigma</a> public data API.</p>
<section class="component">
<label>Component:</label><br/>
<lens-input-enigma id="component" output="{{myoutput}}"></lens-input-enigma>
</section>
<section>
<label>CSV Output:</label><span class="count">{{myoutput.length}} records</span>
<pre>{{myoutput | json}}</pre>
</section>
<script>
var component = document.querySelector('#component');
</script>
</body>
</html>