-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathguest.html
More file actions
29 lines (29 loc) · 1020 Bytes
/
guest.html
File metadata and controls
29 lines (29 loc) · 1020 Bytes
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
<!DOCTYPE html>
<html lang="en">
<body>
<div id="content">
<h1>Welcome to LO for Blitz to support HTTP 2 test - 1</h1>
<div id="innerContent"></div>
</div>
<script src="https://test39-dev-ed.lightning.stmfb.stm.force.com/lightning/lightning.out.js"></script>
<script>
$Lightning.use("c:testCmp", // name of the Lightning app
function() { // Callback once framework and app loaded
debugger;
console.log("callback for $Lightning.use");
$Lightning.createComponent(
"c:welcome",
{},
"innerContent",
function(cmp){
console.log("callback for $Lightning.createComponent");
}
);
},
'https://test39-dev-ed.lightning.stmfb.stm.force.com',
null,
{ "aura.altLang": 'FR' }
);
</script>
</body>
</html>