forked from Hutchy68/Jforeground
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathJforeground.js.txt
83 lines (76 loc) · 2.87 KB
/
Jforeground.js.txt
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
### Make sure you add the following to the *MediaWiki:Jforeground.js* page on the wiki
/* Couple extra prepends of icons for nav items */
$('li#p-Learn a:first').prepend('<div class="drop-icon"><i class="fa fa-university fa-fw"></i></div>')
$('li#p-Help a:first').prepend('<div class="drop-icon"><i class="fa fa-life-ring fa-fw"></i></div>')
$('li#p-Browse a:first').prepend('<div class="drop-icon"><i class="fa fa-search fa-fw"></i></div>')
/* Smooth scroll of TOC links with correct offset but ignore category pages for prev and next */
if ( mw.config.get( 'wgNamespaceNumber' ) !== 14 ) {
$(function() {
$('a[href*=#]:not([href=#])').click(function(e) {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
&& location.hostname == this.hostname) {
e.preventDefault();
var target = $(this.hash),
$target = $(target);
var hash = e.currentTarget.hash.substring(1);
var targetAnchor = target.length ? target : $("span[id='" + hash + "']");
if (targetAnchor.length) {
$('html,body').animate({
scrollTop: targetAnchor.offset().top - 105 //offsets for fixed header
}, 1600, 'swing', function () {
window.location.hash = hash ;
});
return false;
}
}
});
//Executed on page load with URL containing an anchor tag.
if($(location.href.split("#")[1])) {
var targetURL = $("span[id='"+location.href.split("#")[1]+"']");
if (targetURL.length) {
$('html,body').animate({
scrollTop: targetURL.offset().top - 105 //offset height of header here too.
}, 1600);
return false;
}
}
});
}
/* Sticky navbars for mobile view */
jQuery(document).ready(function(){
$(window).bind('scroll', function() {
var navHeight = 68;
if ($(window).scrollTop() > navHeight) {
if ($('nav#topnav').hasClass('expanded')) {
$('nav#topnav').parent().addClass('fixed');
$('nav#topnav').removeClass('fixed');
$('nav#topnav').toggleClass('expanded').css('min-height', '');
$('body').css('padding-top','45px');
}
$('#bottom-nav').addClass('fixed');
$('#navwrapper').css('margin-bottom', '5em');
$('#bottomnav .title-name').css('display', 'inline-block');
}
else {
$('#bottom-nav').removeClass('fixed');
$('body').css('padding-top','45px');
$('#navwrapper').css('margin-bottom', '1.875em');
$('#bottomnav .title-name').css('display', 'none');
}
});
});
/* Footer fix on small pages */
if ( mw.config.get( 'wgIsArticle' ) ) {
$(window).bind("load", function () {
var footer = $("footer.row");
var pos = footer.position();
var height = $(window).height();
height = height - pos.top;
height = height - footer.height();
if (height > 0) {
footer.css({
'position': 'fixed', 'bottom': '0', 'width': '100%'
});
}
});
}