-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (42 loc) · 2.11 KB
/
index.html
File metadata and controls
53 lines (42 loc) · 2.11 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
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="x-ua-compatible" content="IE=Edge"/>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<title>Canvas Starter Kit for Salesforce</title>
<link rel="stylesheet" href="css/canvas-starter-styles.css" />
<link rel="stylesheet" href="css/salesforce-lightning-design-system.css" />
</head>
<body ng-app='app'>
<script src="libraries/canvas-all.js"></script>
<script src="libraries/canvas-starter.js?updated=52920162020"></script>
<script src="libraries/angular.js"></script>
<script src="libraries/ng-route.js"></script>
<script src="app/canvas.js?updated=52920162020"></script>
<script src="app/canvas-controller.js?updated=52920162020"></script>
<script src="app/canvas-directives.js?updated=52920162020"></script>
<script src="app/canvas-services.js?updated=52920162020"></script>
<script src="app/examples/oauth/oauth-controller.js?updated=52920162020"></script>
<script src="app/examples/queryA/queryA-controller.js?updated=52920162020"></script>
<script src="app/examples/queryB/queryB-controller.js?updated=52920162020"></script>
<script src="app/examples/edit/edit-controller.js?updated=52920162020"></script>
<div id="app" initialize ng-controller="AppCtrl" style="height:100%;">
<div id="sidebar">
<h1 id="hello" class="title">Hello {{firstName}}</h1>
<h2 class="sub-title">
Welcome to the Canvas Starter Kit!
</h2>
<p>
If you are seeing this page, then Salesforce has succesfully posted the signed request to the Canvas-Starter kit. Click on a link below to get more details on the Canvas topic.
</p>
<br>
<ul style="padding-left:24px;">
<li ng-repeat="chapter in chapters" ng-class="{'sidebar': selected!=='{{chapter.label}}', 'sidebar selected': selected==='{{chapter.label}}'}"><a href="Javascript:void(null)" ng-click="updateSelected(chapter.label,chapter.hash)">{{chapter.label}}</a></li>
</ul>
</div>
<div id="content" ng-view></div>
</div>
</body>
</html>