-
Notifications
You must be signed in to change notification settings - Fork 6
/
boc-demo.html
42 lines (35 loc) · 1.02 KB
/
boc-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
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>Browser Outgoing Call</title>
<script src="../platform/platform.js"></script>
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="twilio-client-boc.html">
<link rel="stylesheet" href="demo.css" shim-shadowdom>
<style>
body {
display: block;
}
[main] {
height: 100%;
background-color: #eee;
}
core-icon-button {
color: white;
}
</style>
</head>
<body unresolved fullbleed>
<core-header-panel id="headerPanel" main mode="scroll">
<core-toolbar>
<a href="demo.html">
<core-icon-button icon="arrow-back">Go Back</core-icon-button>
</a>
</core-toolbar>
<twilio-client-boc></twilio-client-boc>
</core-header-panel>
</body>
</html>