forked from webex/webex-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (95 loc) · 4.2 KB
/
index.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
<!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, initial-scale=1" />
<title>Cisco Webex JS SDK</title>
<meta name="description" content="JavaScript SDK for Webex" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous" />
<style>
footer {
margin: 20px 0px;
}
footer .copyright {
text-align: center;
margin: 0 auto;
}
</style>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<link rel="canonical" href="https://webex.github.io/webex-js-sdk/" />
<link rel="alternate" type="application/rss+xml" title="Cisco Webex JS SDK" href="https://webex.github.io/webex-js-sdk/feed.xml" />
</head>
<body>
<header class="navbar navbar-default navbar-static-top" role="banner">
<div class="container">
<div class="navbar-header">
<div class="navbar-left">
<a class="navbar-brand" href="./">Cisco Webex JS SDK</a>
</div>
<button class="navbar-toggle collapsed" type="button" data-toggle="collapse" data-target="#primary-navigation" aria-controls="primary-navigation" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<ul class="nav navbar-nav navbar-right">
<li>
<a class="page-link" href="./samples/">Samples</a>
</li>
<li>
<a class="page-link" href="https://developer.webex.com/docs/sdks/browser#samples">Developer Portal</a>
</li>
</ul>
</div>
</header>
<main>
<div class="container">
<div class="row">
<div class="col-md-4">
<h2 class="page-header">Samples</h2>
<p>
Get started quickly with the Cisco Webex JS SDK with the following samples:
</p>
<div class="list-group">
<a href="./samples/browser-auth/" class="list-group-item">Authentication - Flow</a>
<a href="./samples/browser-plugin-meetings/" class="list-group-item">Meetings Plugin</a>
<a href="./samples/browser-read-status/" class="list-group-item">Read Status</a>
<a href="./samples/browser-socket/" class="list-group-item">Socket</a>
</div>
</div>
<div class="col-md-4">
<h2 class="page-header">API Reference</h2>
<p>
See the full API Reference for more detailed information about the SDK:
</p>
<div class="list-group">
<a href="./api" class="list-group-item">API Reference</a>
</div>
</div>
<div class="col-md-4">
<h2 class="page-header">Contribute</h2>
<p>
The Cisco Webex JS SDK is open source and developed on GitHub. Visit the project for details:
</p>
<a href="https://github.com/webex/webex-js-sdk" class="btn btn-primary">GitHub Project »</a>
</div>
</div>
</div>
</main>
<footer>
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-12">
<div class="copyright">
© 2015-2022 Cisco and/or its affiliates. All Rights Reserved.
</div>
</div>
</div>
</div>
</footer>
</body>
</html>