forked from azk0019/CourseProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.html
More file actions
33 lines (30 loc) · 856 Bytes
/
footer.html
File metadata and controls
33 lines (30 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!-- footer.html -->
<script>
$(document).ready(function () {
$('#table_data').DataTable({
"bPaginate": false,
"bLengthChange": false,
"bFilter": true,
"bInfo": false,
"bAutoWidth": false });
$('.dataTables_length').addClass('bs-select');
});
</script>
<div class="jumbotron text-center" style="margin-bottom:0">
<p style="font-weight: bold;">Authored by David Gutierrez
<br>for CS410 Text Information Systems
<br>Fall 2020 @ UIUC</p>
<p>Resources Used:
<br>Bootstrap
<br>JQuery
<br>RaphaelJS
<br>JQuery
<br>Seamus U.S. Map Plugin
<br>Tweepy Twitter API
<br>Pandas
<br>NLTK
<br>TextBlob
</p>
</div>
</body>
</html>