Skip to content

Commit 19fdf1a

Browse files
author
Jan-Justin van Tonder
committed
Added favicon.
1 parent d361e69 commit 19fdf1a

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

demo/favicon.ico

49 KB
Binary file not shown.

demo/index.html

Lines changed: 2 additions & 2 deletions
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">
@@ -891,6 +891,6 @@ <h4>Disclaimer</h4>
891891
</div>
892892
</div>
893893
</footer>
894-
894+
895895
</body>
896896
</html>

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)