-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·63 lines (55 loc) · 2.47 KB
/
Copy pathindex.html
File metadata and controls
executable file
·63 lines (55 loc) · 2.47 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
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<title>TestRex</title>
<meta name="viewport" content="width=320px; user-scalable=no" />
<script src="config.js"></script>
<script src="js/lib/jquery-1.7.2.min.js"></script>
<link rel="stylesheet" href="css/reveal.main.css">
<link rel="stylesheet" href="css/theme/simple.css" id="theme">
<script type="text/javascript">
if(Config.edition == '0'){ //if mobile
document.write('<link rel="stylesheet" href="css/jquery.mobile-1.1.1.min.css" >');
document.write('<link rel="stylesheet" href="css/style-mobile.css" >');
document.write('<script src="js/jqm-config.js"></' + 'script>');
document.write('<script src="js/lib/jquery.mobile-1.1.1.js"></' + 'script>');
}else{ //if web
document.write('<link rel="stylesheet" href="css/bootstrap.min.css">');
document.write('<link rel="stylesheet" href="css/bootstrap-responsive.min.css">');
document.write('<link rel="stylesheet" href="css/docs.css">');
document.write('<link rel="stylesheet" href="css/style-web.css" >');
document.write('<script src="js/lib/bootstrap.min.js"></' + 'script>');
}
//document.write('<link rel="stylesheet" href="css/style-'+Config.edition+'.css" >');
if(Config.phonegap === true){
document.write('<script type="text/javascript" charset="utf-8" src="cordova-2.0.0.js"></' + 'script>');
}
</script>
<!-- The Scripts -->
<!--Libraries-->
<script src="js/lib/underscore-min.js"></script>
<script src="js/lib/backbone.js"></script>
<script src="js/lib/backbone.dualstorage.js"></script>
<script src="js/helper.js"></script>
<script src="js/utils/timer.js"></script>
<script src="js/utils/sync.js"></script>
<script src="js/lib/jquery.textselectevent.js"></script>
<!--Models-->
<!--Views and Controller-->
<script>
document.write('<script src="js/views-'+Config.editionName+'/landingview.js"></' + 'script>');
document.write('<script src="js/views-'+Config.editionName+'/menuview.js"></' + 'script>');
document.write('<script src="js/views-'+Config.editionName+'/mainview.js"></' + 'script>');
document.write('<script src="js/router-'+Config.editionName+'.js"></' + 'script>');
if(Config.remoteDebugging)
{
document.write('<script src="http://jsconsole.com/remote.js?testrexmax"></'+'script>');
}
</script>
<script src="js/main.js"></script>
</head>
<body onload="init();" id="stage" class="theme">
<script src="js/lib/head.min.js"></script>
<script src="js/lib/reveal.js"></script>
</body>
</html>