Skip to content

Commit

Permalink
Biginning model building
Browse files Browse the repository at this point in the history
  • Loading branch information
vincecr0ft committed Jul 9, 2018
1 parent 21d4e8b commit 6f3f5fc
Show file tree
Hide file tree
Showing 6 changed files with 925 additions and 30 deletions.
10 changes: 8 additions & 2 deletions docs/source/_templates/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,20 @@


<script>
// When the user clicks on <div>, open the popup
function myFunction() {
// When the user clicks on <div>, open the popup
function myFunction() {
var popup1 = document.getElementById("ProbModelPopup");
var popup2 = document.getElementById("CompModelPopup");
var popup3 = document.getElementById("PValuePopup");
popup1.classList.toggle("show");
popup2.classList.toggle("show");
popup3.classList.toggle("show");
}
function newFunction() {
var popup4 = document.getElementById("GaussModelPopup");
var popup5 = document.getElementById("MeanPopup");
popup4.classList.toggle("show");
popup5.classList.toggle("show");
}
</script>
{% endblock %}
Loading

0 comments on commit 6f3f5fc

Please sign in to comment.