client/test/test-writable-simple-dist.html
author rougeronj
Tue, 05 May 2015 17:59:14 +0200
changeset 445 705a2e9c6c9d
parent 345 cb5c0007c9f9
permissions -rw-r--r--
Add popup_editor and editor_panel option to allow the editor panel to bin in an external div Update the scene, the node editor and the edge editor to include the options

<!DOCTYPE html>
<html lang="fr">
    <head>
        <meta charset="utf-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
        <title>Test de Rendu RENKAN</title>
        <meta name="description" content="" />
        <meta name="author" content="Institut de Recherche et d'Innovation" />
        <script src="../dist/lib/jquery/jquery.js"></script>
        <script src="../dist/lib/jquery-mousewheel/jquery.mousewheel.js"></script>
        <script src="../dist/lib/underscore/underscore.js"></script>
        <script src="../dist/lib/backbone/backbone.js"></script>
        <script src="../dist/lib/backbone-relational/backbone-relational.js"></script>
        <script src="../dist/lib/paper/paper-full.js"></script>
        <script src="../dist/lib/requirejs/require.js"></script>
        <script src="../dist/js/renkan.js"></script>
        <script type="text/javascript">
            function startRenkan(){
            	var _renkan = new Rkns.Renkan({
                    /*property_files: [ "data/properties.json" ],
                    user_id: "u-iri",
                    language: "fr",
                    node_fill_color: false*/
                	show_bins: false,
                    static_url: "../"
                });
                Rkns.jsonIO(_renkan, {
                    url: "/simple-persist"
                });
            };
        </script>
        <link rel="stylesheet" href="../css/renkan.css" />
    </head>

    <body>
        <div id="renkan"></div>
    </body>
</html>