forked from afandria/paper-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdemo.html
More file actions
24 lines (18 loc) · 696 Bytes
/
demo.html
File metadata and controls
24 lines (18 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
<title>paper-autocomplete</title>
<script src="../webcomponentsjs/webcomponents.js"></script>
<link href="paper-autocomplete.html" rel="import">
<link href="../core-item/core-item.html" rel="import">
</head>
<body unresolved>
<paper-autocomplete label="Country" on-change="{{changeHandler}}">
<core-item label="United States"></core-item>
<core-item label="Canada"></core-item>
</paper-autocomplete>
</body>
</html>