38 lines
930 B
JavaScript
38 lines
930 B
JavaScript
/* ------------------------------------------------------------------------------
|
|
*
|
|
* # 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
|
|
}
|
|
});
|
|
|
|
});
|