-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathUnitConverter.html
69 lines (58 loc) · 2.79 KB
/
UnitConverter.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
<!--
Copyright _ 2005, Apple Computer, Inc. All rights reserved.
NOTE: Use of this source code is subject to the terms of the Software
License Agreement for Mac OS X, which accompanies the code. Your use
of this source code signifies your agreement to such license terms and
conditions. Except as expressly granted in the Software License Agreement
for Mac OS X, no other copyright, patent, or other intellectual property
license or right is granted, either expressly or by implication, by Apple.
-->
<html>
<head>
<style type="text/css" title="AppleStyle">
@import "UnitConverter.css";
</style>
<script type='text/javascript' src='localizedStrings.js' charset='utf-8'></script>
<script type='text/javascript' src='Conversions.js' charset='utf-8'></script>
<script type='text/javascript' src='AppleButton.js' charset='utf-8'></script>
<script type='text/javascript' src='AppleInfoButton.js' charset='utf-8'></script>
<script type='text/javascript' src='AppleAnimator.js' charset='utf-8'></script>
<script id='apple-replace-script' type='text/javascript' src='unitConverterParser.js' charset='utf-8'></script>
<script type='text/javascript' src='UnitConverter.js' charset='utf-8'></script>
</head>
<body onload="load();">
<div id='front'>
<img src='Images/front.png' width='351' height='163' />
<img id='catImage' src='Images/Area.png' width='319' height='24'style='top:1px;' />
<div id='convert-label' class='label'></div>
<div id='convertCat-label' class='label'></div>
<select id='unitCategory-popup' class='popup' onchange='unitCategoryChanged(this);'>
</select>
<div id='fromUnit-label' class='label'></div>
<select id='fromUnit-popup' class='popup' onchange='fromUnitChanged(this);'>
</select>
<input id='convertAmount-input' class='input' type='text' value='1.00' maxLength='13'
onpaste='doConvertAmountLater(this, "left");'
onkeyup='convertAmount(this.value, "left");' />
<div id='toUnit-label' class='label'></div>
<select id='toUnit-popup' class='popup' onchange='toUnitChanged(this);'>
</select>
<input id='converted-input' class='input' type='text' value='' maxLength='13'
onpaste='doConvertAmountLater(this, "right");'
onkeyup='convertAmount(this.value, "right");' />
<div id='currency-status'></div>
<div id='time-hour' class='digital-clock'></div>
<div id='time-minutes' class='digital-clock'></div>
<div id='time-seconds' class='digital-clock'></div>
<div id='time-monospaced' class='monospaced-digital-clock'></div>
<div id="infoButton"></div>
</div>
<div id='back' style='display:none;'>
<img src='Images/backside.png' />
<div id='attribution-text'></div>
<img id='logo' src='Images/Logo_YahooUnitConvertor.png' onclick='clickOnProvider();' />
<a id="tosLink" href="javascript:tosClick(event);"></a>
<div id='done'></div>
</div>
</body>
</html>