forked from klegro/AnalyticsSnapshotGridApp
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathApp-debug.html
More file actions
28 lines (24 loc) · 835 Bytes
/
App-debug.html
File metadata and controls
28 lines (24 loc) · 835 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
<!DOCTYPE html>
<html>
<head>
<title>HistoricalCardBoardApp</title>
<script type="text/javascript" src="https://rally1.rallydev.com/apps/2.0p/sdk-debug.js"></script>
<script type="text/javascript" src="https://raw.github.com/lmaccherone/Lumenize/master/deploy/lumenize.js"></script>
<script type="text/javascript">
Rally.onReady(function() {
Rally.loadScripts([
"HistoricalCard.js",
"HistoricalCardBoardColumn.js",
"HistoricalCardBoard.js",
"App.js"
], function() {
Rally.launchApp('CustomApp', {
name: 'HistoricalCardBoardApp'
})
}, true);
});
</script>
<link rel="stylesheet" type="text/css" href="app.css">
</head>
<body></body>
</html>