-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (95 loc) · 3.84 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<title> Bitcoin - Converter </title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="/img/favicon.ico">
<meta name="description" content="" />
<!--[if lt IE 9]>
<script src="js/ie/html5shiv.js"></script>
<link href="css/ieStyles.css" rel="stylesheet" type="text/css" />
<![endif]-->
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="css/font-awesome.css" rel="stylesheet" type="text/css" />
<link href="css/styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="content">
<div id="currency_exchange_rate">
<div id="currency_selection_container" class="section">
<div class="section">
<span id="selected_country" data-placeholder="Select a country">Select a country</span>
</div>
<div id="currency_selection" class="section out">
<input type="text" name="currency_search" placeholder="Search" />
</div>
</div>
<div class="section">
<label>Currency Value:
<input type="text" name="from_currency_value" disabled />
</label>
<label>Bitcoin Value:
<input type="text" name="bitcoin_value" disabled />
</label>
</div>
</div>
</div>
<div id="footer">
<a href="https://github.com/jasonmng" target="_blank"><img src="images/GitHub_Logo.png" /></a>
</div>
<script type="text/javascript">
var require = {
baseUrl: 'js/bower_components'
, paths: {
underscore: 'lodash/dist/lodash.underscore',
marionette: 'backbone.marionette/lib/core/backbone.marionette',
modernizr: '../lib/modernizr',
bootstrap: '../plugins/bootstrap',
jquery: [
'http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min',
'http://js/jquery-2.0.3.min',
],
backbone: 'backbone/backbone',
'backbone.wreqr': 'backbone.wreqr/lib/backbone.wreqr',
'backbone.babysitter': 'backbone.babysitter/lib/backbone.babysitter',
text: 'requirejs-text/text',
drivers: '../drivers',
modules: '../modules',
helpers: '../helpers',
lib: '../lib',
application: '../application',
core: '../core',
plugins: '../plugins',
}
, shim: {
underscore: { exports: '_' },
'bootstrap': { deps: ['jquery'] },
backbone: {
deps: ['underscore', 'jquery'],
exports: 'Backbone'
}
}
, urlArgs: "bust=" + (new Date()).getTime()
};
</script>
<!--[if lt IE 9]>
<script type="text/javascript">
require.paths.jquery[0] = "//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min";
</script>
<![endif]-->
<!--[if gte IE 9]><!-->
<script type="text/javascript">
require.paths.jquery[0] = "//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min";
</script>
<!--<![endif]-->
<script type="text/javascript" src="js/bower_components/requirejs/require.js"></script>
<script type="text/javascript">
require(['require', 'jquery'], function(require, $) {
$(function(){ require(['drivers/bitcoin/widgets'], function(app) { app.start() }); });
});
</script>
</body>
</html>