forked from 2600hz/libwebphone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebphone.html
37 lines (32 loc) · 1.24 KB
/
webphone.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
<!DOCTYPE html>
<html>
<head>
<title>Kazoo Webphone</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- VENDOR CSS FILES -->
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<!-- CUSTOM CSS FILES -->
<link href="css/webphone.css" rel="stylesheet">
</head>
<body>
<div class="webphone-container blur"></div>
</body>
<!-- VENDOR JS LIBRARIES -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-cookie/2.1.4/js.cookie.min.js"></script>
<script src="https://rawgit.com/blueimp/JavaScript-MD5/master/js/md5.min.js"></script>
<!-- CUSTOM JS LIBRARIES -->
<script src="lib/kazoo.js"></script>
<script src="lib/jquery.kazooWebphone.js"></script>
<script>
jQuery(document).ready(function($) {
$('.webphone-container').webphone({
volume: null,
prefixScripts: 'lib/dependencies/',
});
});
</script>
</html>