Commit 5da68a4a56ed3c0bbd02e17b8ab8905dfada964e

Authored by Jean Wasilewski
1 parent 1e17bb7e

Debug of the loading function

Showing 2 changed files with 5 additions and 1 deletions   Show diff stats
index.php
... ... @@ -22,7 +22,7 @@ require_once("creds.php");
22 22 <div class="col-md-3">
23 23 <?php require_once("menu.php");?>
24 24 </div>
25   - <div class="col-md-9">
  25 + <div class="col-md-9" id="mainContainer">
26 26 <?php require_once("agenda.php");?>
27 27 </div>
28 28 </div>
... ...
js/crep.js 100644 → 100755
... ... @@ -0,0 +1,4 @@
  1 +function loadNewDoc(doc)
  2 +{
  3 + $("#mainContainer").html(file(doc));
  4 +}
... ...