first commit

This commit is contained in:
Olu Amey
2021-09-13 06:53:04 -04:00
commit 32eb3ab418
3602 changed files with 875408 additions and 0 deletions
@@ -0,0 +1,32 @@
/*=========================================================================================
File Name: content-sidebar.js
Description: Invoices list datables configurations
----------------------------------------------------------------------------------------
Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
Author: PIXINVENT
Author URL: http://www.themeforest.net/user/pixinvent
==========================================================================================*/
$(document).ready(function() {
if($(".sidebar-sticky").length){
var headerNavbarHeight,
footerNavbarHeight;
// Header & Footer offset only for right & left sticky sidebar
if($("body").hasClass('content-right-sidebar') || $("body").hasClass('content-left-sidebar')){
headerNavbarHeight = $('.header-navbar').height();
footerNavbarHeight = $('footer.footer').height();
}
// Header & Footer offset with padding for detached right & left dsticky sidebar
else{
headerNavbarHeight = $('.header-navbar').height()+24;
footerNavbarHeight = $('footer.footer').height()+10;
}
$(".sidebar-sticky").sticky({
topSpacing: headerNavbarHeight,
bottomSpacing: footerNavbarHeight
});
}
});