You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
930 B
38 lines
930 B
3 years ago
|
/* ------------------------------------------------------------------------------
|
||
|
*
|
||
|
* # Fixed secondary sidebar
|
||
|
*
|
||
|
* Specific JS code additions for layout_navbar_secondary_fixed.html page
|
||
|
*
|
||
|
* Version: 1.0
|
||
|
* Latest update: Feb 26, 2016
|
||
|
*
|
||
|
* ---------------------------------------------------------------------------- */
|
||
|
|
||
|
$(function() {
|
||
|
|
||
|
|
||
|
// Affix sidebar
|
||
|
// ------------------------------
|
||
|
|
||
|
// When affixed
|
||
|
$('#navbar-second').on('affixed.bs.affix', function() {
|
||
|
$(this).next().css('margin-top', $(this).outerHeight());
|
||
|
$('body').addClass('navbar-affixed-top');
|
||
|
});
|
||
|
|
||
|
// When on top
|
||
|
$('#navbar-second').on('affixed-top.bs.affix', function() {
|
||
|
$(this).next().css('margin-top', '');
|
||
|
$('body').removeClass('navbar-affixed-top');
|
||
|
});
|
||
|
|
||
|
// Init
|
||
|
$('#navbar-second').affix({
|
||
|
offset: {
|
||
|
top: $('#navbar-second').offset().top
|
||
|
}
|
||
|
});
|
||
|
|
||
|
});
|