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.
36 lines
739 B
36 lines
739 B
4 months ago
|
(function($) {
|
||
|
|
||
|
"use strict";
|
||
|
|
||
|
|
||
|
//Add OnepageNav / Sidebar
|
||
|
function sideNav() {
|
||
|
if($('.menu-box .sticky-menu').length){
|
||
|
$('.menu-box .sticky-menu ul').onePageNav();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//Add Scroll Bar To Sidebar
|
||
|
if($('#sidebar .menu-box').length){
|
||
|
$("#sidebar .menu-box").mCustomScrollbar({
|
||
|
axis:"y",
|
||
|
autoExpandScrollbar:false
|
||
|
});
|
||
|
}
|
||
|
|
||
|
//animate to top on Page Refresh
|
||
|
$('html, body').animate({
|
||
|
scrollTop: $('html, body').offset().top
|
||
|
}, 1000);
|
||
|
|
||
|
|
||
|
/* ==========================================================================
|
||
|
When document is ready, do
|
||
|
========================================================================== */
|
||
|
|
||
|
$(document).on('ready', function() {
|
||
|
sideNav();
|
||
|
});
|
||
|
|
||
|
|
||
|
})(window.jQuery);
|