8 lines
178 B
JavaScript
Executable File
8 lines
178 B
JavaScript
Executable File
$(function () {
|
|
var scroll = new SmoothScroll('a[href*="#"]');
|
|
$(document).on('scroll', function () {
|
|
$('.nav-sidebar nav').css({
|
|
'position': 'fixed'
|
|
});
|
|
});
|
|
}); |