front_js/gestures/index.html
changeset 48 983d7be910c1
parent 41 d2f735d7763f
equal deleted inserted replaced
47:4e1ee94d70b1 48:983d7be910c1
    35     <body>
    35     <body>
    36         <!-- Scripts principaux. -->
    36         <!-- Scripts principaux. -->
    37         <script type="text/javascript">
    37         <script type="text/javascript">
    38             var gts;
    38             var gts;
    39             
    39             
    40             var config = new Object();
    40             var config =
    41             
    41 			{
    42             config["timeShowGesture"] = 1000;
    42 				timeShowGesture: 1000,
    43             config["host"] = "127.0.0.1";
    43 				host: '127.0.0.1',
    44             config["port"] = 8090;
    44 				port: 8090
       
    45 			};
    45             
    46             
    46             //Si la page a chargé, on charge les pointeurs.
    47             //Si la page a chargé, on charge les pointeurs.
    47             $(document).ready(function ()
    48             $(document).ready(function ()
    48             {
    49             {
    49                 gts = new gestures(config);
    50                 gts = new Gestures(config);
    50             });
    51             });
    51         </script>
    52         </script>
    52     </body>
    53     </body>
    53 </html>
    54 </html>