52 lines
1.7 KiB
HTML
52 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<title>ease.js</title>
|
|
<link type="text/css" rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<div id="header">
|
|
<h1>ease.js</h1>
|
|
</div>
|
|
|
|
<div id="menu">
|
|
<ul>
|
|
<li><a href="manual.html">Manual (Single Page)</a></li>
|
|
<li><a href="manual/">Manual (Split)</a></li>
|
|
<li><a href="https://github.com/mikegerwitz/easejs">Source Code</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div id="content">
|
|
<noscript>
|
|
<strong>Please enable JavaScript to take advantage of the interactive
|
|
features of this website.</strong>
|
|
</noscript>
|
|
<p>
|
|
ease.js is a collection of CommonJS modules intended to “ease”
|
|
the transition into JavaScript from other Object-Oriented languages. It
|
|
provides an intuitive means of achieving classical inheritance and has
|
|
planned support for traits/mixins, function overloading and more.
|
|
</p>
|
|
|
|
<p>
|
|
<strong>This project is under heavy development.</strong> However, the
|
|
<tt>master</tt> branch is always guaranteed to be in a working, stable
|
|
state. It is currently in use within a production system at the author's
|
|
place of employment. Feel free to use ease.js in your own projects.
|
|
</p>
|
|
</div>
|
|
|
|
<p class="copyright">
|
|
Copyright © 2011 <a href="http://mikegerwitz.name">Mike Gerwitz</a>
|
|
</p>
|
|
|
|
<script type="text/javascript"
|
|
src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js">
|
|
</script>
|
|
<script type="text/javascript" src="scripts/ease-full.js"></script>
|
|
<script type="text/javascript" src="scripts/ui.js"></script>
|
|
</body>
|
|
</html>
|