Documentation
Configure your environment
Kaiten has been developed to work with the current major browsers in the market.
Nonetheless, you must have a quite recent version of your favorite browser :
- Firefox 4.0.1+, 5+
- Safari 5.0.5+
- Chrome 12+
- Opera 11.11+
- Internet Explorer 9
Kaiten requires all of these resources in order to work :
JavaScript
- jQuery 1.6.2 or higher
- jQuery UI 1.8.11 or higher
- jKaiten.js
CSS
- kaiten.css
When you include these files in your application (i.e. your HTML file) the order of inclusion does matter. Example:
<link rel="stylesheet" type="text/css" href="css/kaiten.css"/>
<script type="text/javascript" src="js/jquery-1.6.2.min.js"> </script>
<script type="text/javascript" src="js/jquery-ui-1.8.11.custom.min.js"> </script>
<script type="text/javascript" src="js/jkaiten.js"> </script>
There also is a minimal HTML markup to put in the body of your document :
<body>
<!--That div will contain panels and breadcrumb, the id is up to you-->
<div id="container" />
</body>