-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (23 loc) · 738 Bytes
/
index.html
File metadata and controls
27 lines (23 loc) · 738 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
<html lang="en-US">
<body>
<script src="https://esw1234.github.io/ssz/lightning/v1/lightning.out.js"></script>
<div ng-app="myApp" ng-controller="myCtrl">
<p>Today's welcome message is:</p>
<div ng-bind-html="rawHtml">{{myWelcome}}</div>
</div>
<div id="lightning">
</div>
<script>
$Lightning.use("c:LightningOutAppTest", function() {
$Lightning.createComponent("c:AuraComLightningOutTest",
{ },
"lightning",
function(cmp) {
// do some stuff
});
},
'https://sisi-lcs-imac-dev-ed.develop.my.localhost.sfdcdev.site.com:7443/help' // Community endpoint
);
</script>
</body>
</html>