-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpolymer.html
123 lines (110 loc) · 5.92 KB
/
polymer.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, shrink-to-fit=no, initial-scale=1">
<meta name="description" content="Circuit Developer Community - Polymer Examples">
<meta name="author" content="Roger Urscheler">
<link rel="shortcut icon" type="image/png" href="images/polymer-logo.png"/>
<title>Circuit API Polymer Examples</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script>
if (window.location.host == 'circuit.github.io' && window.location.protocol != 'https:') {
window.location.protocol = 'https:';
}
</script>
</head>
<body>
<div id="wrapper">
<!-- Sidebar -->
<div id="sidebar-wrapper"></div>
<!-- Page Content -->
<div id="page-content-wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<h1>Polymer components</h1>
<p>Add Circuit functionality to your site with easy to use Polymer elements. <a href="https://www.polymer-project.org/" target="_blank">Polymer</a> is Google's platform to Web Components. Use of the shelf Circuit Polymer elements, or create your own.</p>
<p>These Circuit Polymer components are only in alpha and might use older version of Polymer.</p>
</div>
</div>
<div class="bs-callout bs-callout-primary">
<p>The ploymer components are not maintained and are still using outdated Polymer 1.0.</p>
<p>New web components with the latest technology will be created soon.</p>
</div>
<!-- Examples -->
<div class="row">
<!-- Page Header -->
<div class="col-lg-12">
<h2 class="page-header">Examples</h2>
</div>
<!-- /.row -->
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<a href="https://github.com/circuit/circuit-chat" target="_blank">
<img class="img-responsive" src="/images/circuit-chat.jpg" alt="">
</a>
</div>
<div class="panel-body">
<h5><i class="fa fa-fw fa-check"></i>circuit-chat</h5>
<p>Simple chat component for a predefined conversation. Post messages are view last few messages. Event raised for new message.</p>
<a href="https://rawgit.com/circuit/js-sdk/master/circuit-chat.html" target="_blank" class="btn btn-default">Live example</a>
<a href="https://github.com/circuit/circuit-chat" target="_blank" class="btn btn-default">Source</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<a href="https://github.com/circuit/circuit-call-button" target="_blank">
<img class="img-responsive" src="/images/circuit-call-button.gif" alt="">
</a>
</div>
<div class="panel-body">
<h5><i class="fa fa-fw fa-check"></i>circuit-call-button</h5>
<p>An element providing a button to initiate Circuit direct voice/video/screenshare calls using the Circuit SDK.</p>
<a href="https://github.com/circuit/circuit-call-button" target="_blank" class="btn btn-default">Source</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">
<a href="https://github.com/circuit/circuit-api" target="_blank">
<img class="img-responsive" src="/images/circuit-api.jpg" alt="">
</a>
</div>
<div class="panel-body">
<h5><i class="fa fa-fw fa-check"></i>circuit-api</h5>
<p>Provides access the Circuit JS SDK, including the logon functionality. It internally uses circuit-login-dialog to prompt for credentials if needed.</p>
<a href="https://github.com/circuit/circuit-api" target="_blank" class="btn btn-default">Source</a>
</div>
</div>
</div>
</div>
<!-- /.row -->
</div>
</div>
</div>
<!-- /#wrapper -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"></script>
<script>
$(function(){
$("#sidebar-wrapper").load("/sidebar.html");
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-67318539-2', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>