-
Notifications
You must be signed in to change notification settings - Fork 13
/
1_No_Authentication.html
70 lines (64 loc) · 2.12 KB
/
1_No_Authentication.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<script type="text/javascript" src="https://demo.microstrategy.com/MicroStrategyLibrary/javascript/embeddinglib.js"></script>
<!-- This is for the jsfiddle button. You don't need it in your application. -->
<script type="text/javascript" src="js/jsfiddle.js"></script>
</head>
<body>
<div>This example uses guest authentication. </div>
<div id="mydossier"></div>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function(){
var container = document.getElementById("mydossier");
var url = "https://demo.microstrategy.com/MicroStrategyLibrary/app/EC70648611E7A2F962E90080EFD58751/837B57D711E941BF000000806FA1298F";
microstrategy.dossier.create({
url: url,
enableResponsive: true,
placeholder: container,
containerHeight: '1000px',
enableCollaboration: false,
dockedTOC: {
dockedPosition: 'right',
theme: 'light',
canClose: false,
dockChangeable: false,
isDocked:true
},
navigationBar: {
enabled: false,
gotoLibrary: false,
title: false,
toc: false,
reset: false,
share: false,
comment: false,
filter: false
},
optionsFeature: {
enabled: false,
help: true,
manage: true,
logout: true,
showTutorials: true
} ,
filterFeature: {
enabled: false,
editable: false,
summary: true
},
shareFeature: {
enabled: false,
invite: false,
link: false,
email: false,
export: false,
download: false
}
})
});
</script>
</body>
</html>