Skip to content

Commit 61eeb49

Browse files
committed
Add bottom footer issue #416
1 parent 900290a commit 61eeb49

File tree

1 file changed

+30
-3
lines changed

1 file changed

+30
-3
lines changed

bookfoot.php

+30-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function onSelect() {
2828
console.log($('#chapters').val());
2929
window.location = $('#chapters').val();
3030
}
31-
</script>
31+
</script>
3232
<div style="float:right">
3333
<select id="chapters" onchange="onSelect();">
3434
<option <?= x_sel("01-intro") ?>>Chapter 1: Introduction</option>
@@ -52,12 +52,39 @@ function onSelect() {
5252

5353
<?php
5454
echo($body);
55+
56+
$OUTPUT->footerStart();
5557
?>
5658
<hr/>
5759
<p>
5860
If you find a mistake in this book, feel free to send me a fix using
5961
<a href="https://github.com/csev/py4e/tree/master/book3" target="_blank">Github</a>.
6062
</p>
63+
<script>
64+
function onSelectFooter() {
65+
console.log($('#chapters_footer').val());
66+
window.location = $('#chapters_footer').val();
67+
}
68+
</script>
69+
<div style="float:right">
70+
<select id="chapters_footer" onchange="onSelectFooter();">
71+
<option <?= x_sel("01-intro") ?>>Chapter 1: Introduction</option>
72+
<option <?= x_sel("02-variables") ?>>Chapter 2: Variables</option>
73+
<option <?= x_sel("03-conditional") ?>>Chapter 3: Conditionals</option>
74+
<option <?= x_sel("04-functions") ?>>Chapter 4: Functions</option>
75+
<option <?= x_sel("05-iterations") ?>>Chapter 5: Iterations</option>
76+
<option <?= x_sel("06-strings") ?>>Chapter 6: Strings</option>
77+
<option <?= x_sel("07-files") ?>>Chapter 7: Files</option>
78+
<option <?= x_sel("08-lists") ?>>Chapter 8: Lists</option>
79+
<option <?= x_sel("09-dictionaries") ?>>Chapter 9: Dictionaries</option>
80+
<option <?= x_sel("10-tuples") ?>>Chapter 10: Tuples</option>
81+
<option <?= x_sel("11-regex") ?>>Chapter 11: Regex</option>
82+
<option <?= x_sel("12-network") ?>>Chapter 12: Networked Programs</option>
83+
<option <?= x_sel("13-web") ?>>Chapter 13: Python and Web Services</option>
84+
<option <?= x_sel("14-objects") ?>>Chapter 14: Python Objects</option>
85+
<option <?= x_sel("15-database") ?>>Chapter 15: Python and Databases</option>
86+
<option <?= x_sel("16-viz") ?>>Chapter 16: Data Vizualization</option>
87+
</select>
88+
</div>
6189
<?php
62-
63-
$OUTPUT->footer();
90+
$OUTPUT->footerEnd();

0 commit comments

Comments
 (0)