-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (62 loc) · 3.18 KB
/
index.html
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
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<title>Stock Stalker</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--script src="lib/dust/dust-full-2.4.0.js"></script>
<script src="lib/dust/dust-helpers-1.2.0.js"></script>
<script src="lib/underscore-1.6.0.min.js"></script>
<script src="lib/jquery/jquery-2.1.1.min.js"></script>
<link rel="stylesheet" href="lib/jquery/css/themes/default/jquery.mobile-1.4.3.min.css"-->
<script src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.6.0/underscore-min.js"></script>
<link rel="stylesheet" href="css/stockstalker.css">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.3/jquery.mobile-1.4.3.min.css" />
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.3/jquery.mobile-1.4.3.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/dustjs-linkedin/2.4.0/dust-full.min.js"></script>
<script src="//cdn.jsdelivr.net/dustjs.helpers/1.2.0/dust-helpers.min.js"></script>
<script type="text/javascript" src="http://www.parsecdn.com/js/parse-1.2.19.min.js"></script>
<script type="text/javascript" src="js/utils.js"></script>
<script type="text/javascript" src="js/YFiDownloader.js"></script>
<script type="text/javascript" src="js/portfolios.js"></script>
<script type="text/javascript" src="js/quotemgr.js"></script>
<script type="text/javascript" src="js/NewsParser.js"></script>
<script type="text/javascript" src="build/templates/templates.js"></script>
<script type="text/javascript" src="js/templateWrapper.js"></script>
<script type="text/javascript" src="js/DustHelpers.js"></script>
<script type="text/javascript" src="js/import.js"></script>
<script type="text/javascript" src="js/app.js"></script>
<script>
$(document).bind('mobileinit', function() {
if (document.body)
console.log("init: Body exists " + document.body.querySelector('[data-role="page"]'));
else
console.log("body doesn't exist");
$.extend($.support, {
cors: true
});
$.extend($.mobile, {
allowCrossDomainPages: true, // To ensure remote fecthing of jQM styled pages
pushStateEnabled: false, // Must be disabled to fetch remote pages and still get the Back button working
touchOverflowEnabled: false, // Better scrolling in iOS 5
loadingMessage: false,
pageLoadErrorMessage: "Page load error",
loadMsgDelay: 2000
});
});
$(document).bind('ready', function() {
Stock.App.init();
});
</script>
<script>
$(document).ready(function() {
//$("[data-role=panel]").panel().enhanceWithin();
// for panel $( "#Dashboard" ).trigger( "updatelayout" );
});
</script>
</head>
<body class="stock-stalker">
<div data-role="page" id="Dashboard" data-temp="1">
</div>
</body>
</html>