Parcourir la source

testing

master
Pascal Gloor il y a 5 ans
Parent
révision
4b90285f5d
2 fichiers modifiés avec 33 ajouts et 3 suppressions
  1. 32
    3
      www/index.html
  2. 1
    0
      www/js/autodoc.js

+ 32
- 3
www/index.html Voir le fichier

@@ -116,18 +116,47 @@
</div>
<div class="modal-body autodoc_home_modal_body">
<div class="row">
<div id="autodoc_home_modal_left" class="col-1 autodoc_valign text-light bg-secondary" style="opacity: 0.15;">
<div id="autodoc_home_modal_left" class="col-1 autodoc_valign text-light bg-secondary"
style="opacity: 0.15;">
<i class="fas fa-3x fa-chevron-circle-left"></i>
</div>
<div class="col">
<img class="img-fluid" id="autodoc_home_modal_img" />
<div>Page
<span class="autodoc_home_modal_page"></span>
/
<span class="autodoc_home_modal_pages"></span>
</div>
</div>
<div id="autodoc_home_modal_right" class="col-1 autodoc_valign text-light bg-secondary" style="opacity: 0.15;">
<div id="autodoc_home_modal_right" class="col-1 autodoc_valign text-light bg-secondary"
style="opacity: 0.15;">
<i class="fas fa-3x fa-chevron-circle-right"></i>
</div>
</div>
</div>
<div class="modal-footer autodoc_home_modal_footer">
<table class="table table-striped table-sm">
<tr>
<th scope="row">Name</th>
<td class="autodoc_home_modal_name"></td>
</tr>
<tr>
<th scope="row">Created</th>
<td class="autodoc_home_modal_created"></td>
</tr>
<tr>
<th scope="row">Languages</th>
<td class="autodoc_home_modal_languages"></td>
</tr>
<tr>
<th scope="row">Creator</th>
<td class="autodoc_home_modal_owner"></td>
</tr>
<tr>
<th scope="row">Pages</th>
<td class="autodoc_home_modal_pages"></td>
</tr>
</table>
</div>
</div>
</div>
@@ -193,4 +222,4 @@
<script src="js/autodoc.js"></script>
</body>

</html>
</html>

+ 1
- 0
www/js/autodoc.js Voir le fichier

@@ -430,6 +430,7 @@ function home_modal_open(docid) {
break;
}
}
$('.autodoc_home_modal_owner').html(data.owner);
home_modal_page(pageNum);
$('#autodoc_home_modal').modal('show');
});

Chargement…
Annuler
Enregistrer