Skip to content

Commit 905a4aa

Browse files
authored
Merge pull request #208 from javaTheHutts/207_update_demo_interface_links
207 update demo interface links closes #207
2 parents d361e69 + c5df375 commit 905a4aa

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

demo/favicon.ico

49 KB
Binary file not shown.

demo/index.html

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<title>Hutts verification</title>
66
<meta charset="utf-8">
77
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8-
<link rel="icon" type="image/png" href="img/hutts-verification-icon.png">
8+
<link rel="icon" type="image/png" href="favicon.ico">
99
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
1010
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
1111
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
@@ -276,6 +276,12 @@
276276
<i class="material-icons fa fa-github"></i>GitHub Repository
277277
</a>
278278
</li>
279+
<li>
280+
<a class="waves-effect waves-teal" target="_blank"
281+
href="https://javathehutts.github.io/Java-the-Hutts">
282+
<i class="material-icons fa fa-book"></i>Project Page
283+
</a>
284+
</li>
279285
<li>
280286
<a class="waves-effect waves-teal" target="_blank"
281287
href="https://javathehutts.github.io/Java-the-Hutts/">
@@ -316,6 +322,12 @@
316322
<i class="material-icons fa fa-github"></i>GitHub Repository
317323
</a>
318324
</li>
325+
<li>
326+
<a class="waves-effect waves-teal" target="_blank"
327+
href="https://javathehutts.github.io/Java-the-Hutts">
328+
<i class="material-icons fa fa-book"></i>Project Page
329+
</a>
330+
</li>
319331
<li>
320332
<a class="waves-effect waves-teal" target="_blank"
321333
href="https://javathehutts.github.io/Java-the-Hutts/">
@@ -876,6 +888,11 @@ <h4>Disclaimer</h4>
876888
</a>
877889
<a class="waves-effect waves-light social btn-floating btn tooltipped"
878890
href="https://javathehutts.github.io/Java-the-Hutts/"
891+
target="_blank" data-position="top" data-delay="50" data-tooltip="Project Page">
892+
<i class="material-icons prefix fa fa-book"></i> Project Page
893+
</a>
894+
<a class="waves-effect waves-light social btn-floating btn tooltipped"
895+
href="https://javathehutts.github.io/Java-the-Hutts/#team"
879896
target="_blank" data-position="top" data-delay="50" data-tooltip="The Team">
880897
<i class="material-icons prefix fa fa-users"></i> Team
881898
</a>

demo/js/script.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ PipelineType = {
1515

1616
$(document).ready(function () {
1717

18+
// Remove webhost ad div
19+
$('a').each(function() {
20+
if ($(this).attr('title') == 'Hosted on free web hosting 000webhost.com. Host your own website for FREE.') {
21+
$(this).parent().remove();
22+
}
23+
});
24+
1825
// Attempt to deal with sticky hover
1926
if ($(window).width() < 994) {
2027
disableHoverEffects();

0 commit comments

Comments
 (0)