source: js/human_3d_alignment/index.html @ 881

Last change on this file since 881 was 881, checked in by Maciej Komosinski, 5 years ago

Initial, prototype version of a javascript app to test how humans align two 3D structures

File size: 972 bytes
Line 
1<!DOCTYPE html>
2<html>
3<head lang="en">
4    <meta charset="UTF-8">
5    <title>Framsticks JS</title>
6    <link rel="stylesheet" type="text/css" href="node_modules/react-grid-layout/css/styles.css">
7    <link rel="stylesheet" type="text/css" href="node_modules/react-resizable/css/styles.css">
8    <link rel="stylesheet" type="text/css" href="node_modules/react-table/react-table.css">
9    <meta name='viewport' content="width=device-width, user-scalable=no"/>
10</head>
11<body>
12        <script type="text/javascript">
13        var Module = { onRuntimeInitialized: function() {
14          console.log('loaded Framsticks');
15          var event = new Event('emReady');
16          //window.geneticsObject = new Module.PreconfiguredGenetics();
17          document.dispatchEvent(event);
18        } };
19    </script>
20        <div class="root"></div>
21    <script type="text/javascript" src="../sdk/frams-sdk.js"></script>
22    <script type="text/javascript" src="dist/bundle.js"></script>
23</body>
24</html>
Note: See TracBrowser for help on using the repository browser.