forked from gideros/gideros
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/gideros/gideros
- Loading branch information
Showing
1,396 changed files
with
130,066 additions
and
3,584 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Gideros Reference Manual</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta name="description" content=""> | ||
<meta name="author" content=""> | ||
<link rel="shortcut icon" href="design/assets/favicon.ico"> | ||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="design/assets/greference-144.png"> | ||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="design/assets/greference-114.png"> | ||
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="design/assets/greference-72.png"> | ||
<link rel="apple-touch-icon-precomposed" href="design/assets/greference-57.png"> | ||
|
||
<!-- Le styles --> | ||
<link href="design/css/bootstrap.min.css" rel="stylesheet"> | ||
<link rel="stylesheet" href="design/css/font-awesome.min.css"> | ||
<link rel="stylesheet" href="design/css/theme.css"> | ||
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,700,800,600,300' rel='stylesheet' type='text/css'> | ||
<link href="design/css/prettify.css" type="text/css" rel="stylesheet" /> | ||
|
||
<!--[if lt IE 9]> | ||
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> | ||
<![endif]--> | ||
</head> | ||
|
||
<body data-spy="scroll" data-target=".bs-docs-sidebar" data-offset="20"> | ||
<div class="tabbable"> | ||
<a name='top'></a> | ||
<div class="navbar navbar-inverse"> | ||
<div class="navbar-inner"> | ||
<div class="middle-bar"> | ||
<a class="brand" href="http://giderosmobile.com" target='_blank'>GiderosMobile.com</a> | ||
<h2>Gideros Documentation</h2> | ||
</div> | ||
</div> | ||
</div> | ||
<ul class="nav nav-tabs"> | ||
<li><a href="gideros.html">Main API</a></li> | ||
<li><a href="physics.html">Physics API</a></li> | ||
<li><a href="lua.html">Lua API</a></li> | ||
<li><a href="plugin.html">Plugins</a></li> | ||
<li><a href="labs.html">Labs</a></li> | ||
<li><a href="new.html">What's new?</a></li> | ||
<li class="active"><a href="dev.html">In development</a></li> | ||
</ul> | ||
<div class="container-fluid"> | ||
|
||
<!-- Docs nav | ||
================================================== --> | ||
<div class="row-fluid"> | ||
<div class="span4 bs-docs-sidebar"> | ||
<div id='contents' class='span4' data-spy="affix" data-offset-top="110"> | ||
<h1>Table of Contents</h1> | ||
<ul class="nav nav-list bs-docs-sidenav"> | ||
</ul> | ||
</div> | ||
</div> | ||
<div class="span8" style='min-height:1000px; padding-left: 20px;'> | ||
|
||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
|
||
</div> | ||
<!-- Footer | ||
================================================== --> | ||
<footer> | ||
<div class="footer-bottom"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="span12"> | ||
<p class="pull-right"><a href="dev.html#">Back to top</a></p> | ||
<p>© GiderosMobile.com</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
|
||
|
||
|
||
<!-- Le javascript | ||
================================================== --> | ||
<!-- Placed at the end of the document so the pages load faster --> | ||
<!-- last but not least the javascript --> | ||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> | ||
<script>window.jQuery || document.write('<script src="js/jquery-1.8.3.min.js.html"><\/script>')</script> | ||
<script src="design/js/bootstrap.js"></script> | ||
<script type="text/javascript" src="design/js/prettify.js"></script> | ||
<script type="text/javascript" src="design/js/lang-lua.js"></script> | ||
<script> | ||
$(document).ready(function(){ | ||
//bootstrap tooltip trigger | ||
$('[rel="tooltip"]').tooltip(); | ||
$("code").addClass("prettyprint").addClass("lang-lua"); | ||
prettyPrint(); | ||
$(".uplist").children("a.item").click(function(e){ | ||
if($(this).hasClass("closed")) | ||
{ | ||
$(this).addClass("opened").removeClass("closed"); | ||
$(this).parent().find("ul").slideDown(); | ||
} | ||
else | ||
{ | ||
e.preventDefault(); | ||
$(this).addClass("closed").removeClass("opened"); | ||
$(this).parent().find("ul").slideUp(); | ||
} | ||
}); | ||
}); | ||
</script> | ||
</body> | ||
</html> |
Oops, something went wrong.