forked from wrackzone/RallyTreeGrid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp-debug.html
More file actions
32 lines (28 loc) · 993 Bytes
/
App-debug.html
File metadata and controls
32 lines (28 loc) · 993 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
30
31
32
<!DOCTYPE html>
<html>
<head>
<title>TreeGrid</title>
<script type="text/javascript" src="https://rally1.rallydev.com/apps/2.0p5/sdk-debug.js"></script>
<script type="text/javascript">
// I am keeping the extra , in there to simplify my code. If someone is actually using an old version of IE to make an app let me know.
Rally.loadScripts(
[
"QueryStringParser.js",
"RallyTreeProxy.js",
"RallyTreeModel.js",
"RallyTreeModelFactory.js",
"RallyTreeDataStore.js",
"RallyTreeGrid.js",
"ModifiedPercentDone.js",
"App.js",
],
function() {
Rally.launchApp('CustomApp', {
name:"TreeGrid"
});
}, true);
</script>
<link rel="stylesheet" type="text/css" href="app.css">
</head>
<body></body>
</html>