-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (54 loc) · 1.78 KB
/
Copy pathindex.html
File metadata and controls
58 lines (54 loc) · 1.78 KB
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
<!--<head>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<title>Title</title>
</head>-->
<!--<body style="width: 100%; height: 100%;">
<div id="aww-wrapper" style="width: 100%; height: 100%;">
<!– Element in which the whiteboard will be shown
– modify style as needed –>
</div>
<script>
var aww = new AwwBoard('#aww-wrapper', {
apiKey: '424db7a1-84c2-4cba-8154-f8d7a2ecaae4'
});
$.ajax({
'method': 'GET',
'url': 'https://awwapp.com/static/widget/sample_toolbar.html'
}).done(function(res, status) {
$('#aww-wrapper').append(res);
initToolbar();
});
</script>
<script src="https://awwapp.com/static/widget/sample_toolbar.js"></script>
</body>-->
<!DOCTYPE html>
<html lang="en">
<head>
<style type="text/css">
</style>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<link rel="stylesheet" href="https://awwapp.com/static/widget/css/toolbar_style.css">
</head>
<body>
<div id="aww-wrapper" style="width: 100vw; height: 100vh;" class="aww"></div>
<script src="https://awwapp.com/static/widget/js/aww3.min.js"></script>
<script type="text/javascript">
var aww = new AwwBoard('#aww-wrapper', {
/* make sure you're using your own key here */
apiKey: '424db7a1-84c2-4cba-8154-f8d7a2ecaae4',
/* put a unique text here */
multiPage: true,
sendUserPointer: true,
showUserPointers: true
});
$.ajax({
'method': 'GET',
'url': 'https://awwapp.com/static/widget/sample_toolbar.html'
}).done(function(res, status) {
$('#aww-wrapper').append(res);
initToolbar();
});
</script>
<script src="https://awwapp.com/static/widget/sample_toolbar.js"></script>
</body>
</html>