GITLAB
LeClubInfo
/
crep
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Issues
0
Merge Requests
0
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
5da68a4a56ed3c0bbd02e17b8ab8905dfada964e
Authored by
Jean Wasilewski
2014-10-31 11:15:01 +0100
1 parent
1e17bb7e
Debug of the loading function
Showing
2 changed files
with
5 additions
and
1 deletions
Show diff stats
index.php
js/crep.js
Inline
Side-by-side
index.php
Wrap text
Show/Hide comments
View file @
5da68a4
...
...
@@ -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
Wrap text
Show/Hide comments
View file @
5da68a4
...
...
@@ -0,0 +1,4 @@
1
+function loadNewDoc(doc)
2
+{
3
+ $("#mainContainer").html(file(doc));
4
+}
...
...