forked from LarryBattle/Ratio.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 1005 Bytes
/
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
<html>
<head>
<title>Ratio.js - Fractions for Javascript</title>
</head>
<body>
<a href="https://github.com/LarryBattle/Ratio.js"><img src="images/ratiojs-logo.png"/></a><br/>
<b><a href="https://github.com/LarryBattle/Ratio.js">Ratio.js</a> - Fractions for Javascript</b><br/>
By <a href="http://www.bateru.com/news">Larry Battle</a>
<ul>
<li><a href="examples/demo-basic.html">Simple Demo</a></li>
<li><a href="doc/classes/Ratio.html">Documentation</a></li>
<li><a href="test/Ratio.js_testcases.html">Test Cases</a></li>
<li><a href="https://github.com/LarryBattle/Ratio.js/issues?state=open">Report Issues</a></li>
</ul>
<p id="ratioVersion">Error loading Ratio.js</p>
<script src="./lib/Ratio-0.4.0.js"></script>
<script type="text/javascript">
var $id = function( id ){
return document.getElementById( id ) || {};
}
if(typeof Ratio !== "undefined"){
$id("ratioVersion").innerHTML = "Current Version is <b>" + (Ratio.VERSION || "Error") + "</b>";
}
</script>
</body>
</html>