static/index.html
author Tero Marttila <terom@fixme.fi>
Wed, 27 Aug 2008 21:30:32 +0300
changeset 41 540737bf6bac
parent 28 c239c5c3beda
permissions -rw-r--r--
sending requests, and partial support for receiving -- incomplete, not tested
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
        <title>Mandelbrot</title>
        <script src="/static/prototype.js" type="text/javascript"></script>
        <script src="/static/dragdrop.js" type="text/javascript"></script>
        <script src="/static/builder.js" type="text/javascript"></script>
        <script src="/static/tiles2.js" type="text/javascript"></script>
        <link rel="Stylesheet" type="text/css" href="static/style.css">
    </head>
    <body>
        <div id="wrapper">
            <div id="viewport" style="width: 100%; height: 100%">
                <div class="substrate"></div>
            </div>
        </div>

        <script type="text/javascript">
            var tile_source = new Source("/tile", 256, 256, 0, 13);
            var main = new Viewport(tile_source, "viewport");
        </script>
    </body>
</html>