54 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <title>Lib Doctests</title>
 | 
						|
    <meta charset="utf-8"/>
 | 
						|
	<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
 | 
						|
	<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0" />
 | 
						|
    <link rel="stylesheet" href="../css/index.css">
 | 
						|
 | 
						|
    <!-- following not necc for index.js included in iwmlib.js -->
 | 
						|
    <!-- <script src="./index.js"></script> -->
 | 
						|
    
 | 
						|
    <script src="../dist/iwmlib.js"></script>
 | 
						|
 | 
						|
    <template id="itemTemplate">
 | 
						|
        <a class="wrapper" href="">
 | 
						|
            <div class="preview">
 | 
						|
                <div class="thumbnail-container">
 | 
						|
                    <div class="thumbnail">
 | 
						|
                        <img class="icon" src="thumbnails/notfound.png">
 | 
						|
                        <!-- <iframe src="" frameborder="0"></iframe> -->
 | 
						|
                     </div>
 | 
						|
                </div>
 | 
						|
                <div class="title"></div>
 | 
						|
            </div>
 | 
						|
        </a>
 | 
						|
    </template>
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
<div id="container" class="container">
 | 
						|
    <a style="position: absolute; left: 22px; top: 12px;" target="_blank" href="http://www.iwm-tuebingen.de">IWM</a>
 | 
						|
</div>
 | 
						|
<script>
 | 
						|
    let index = new Index(itemTemplate, [
 | 
						|
        ['Doctest', 'doctest.html'],
 | 
						|
        ['Capabilities', 'capabilities.html'],
 | 
						|
        ['Coordinates', 'coordinates.html'],
 | 
						|
        ['Interface', 'interface.html'],
 | 
						|
        ['Interaction', 'interaction.html'],
 | 
						|
        ['Events', 'events.html'],
 | 
						|
        ['Frames', 'frames.html'],
 | 
						|
        ['Popup', 'popup.html'],
 | 
						|
        ['Popup Menu', 'popupmenu.html'],
 | 
						|
        ['Scatter', 'scatter.html'],
 | 
						|
        ['Flippable', 'flippable.html'],
 | 
						|
        ['Styleguide', 'styleguide.html'],
 | 
						|
        ['UITest', 'uitest.html'],
 | 
						|
        ['PIXI Doctests', 'pixi/index.html']
 | 
						|
    ])
 | 
						|
    index.load()
 | 
						|
</script>
 | 
						|
</body>
 | 
						|
</html>
 |