-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.html
More file actions
32 lines (27 loc) · 713 Bytes
/
App.html
File metadata and controls
32 lines (27 loc) · 713 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>CycleTimeMachine</title>
<script type="text/javascript" src="/apps/2.0p/sdk.js"></script>
<script type="text/javascript">
Rally.onReady(function() {
Ext.define('CustomApp', {
extend: 'Rally.app.App',
componentCls: 'app',
launch: function() {
//Write app code here
}
});
Rally.launchApp('CustomApp', {
name: 'CycleTimeMachine'
});
});
</script>
<style type="text/css">
.app {
/* Add app styles here */
}
</style>
</head>
<body></body>
</html>