mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-08 06:16:08 +01:00
24 lines
521 B
JavaScript
Executable File
24 lines
521 B
JavaScript
Executable File
|
|
/* Nice scrollbar */
|
|
|
|
$(document).on('ready', function() {
|
|
|
|
$(".scrollable-nice").niceScroll({
|
|
horizrailenabled: false,
|
|
cursorborder: "0",
|
|
cursorwidth: "6px",
|
|
cursorcolor: "#363636",
|
|
zindex: "5555",
|
|
autohidemode: true,
|
|
bouncescroll: true,
|
|
mousescrollstep: '40',
|
|
scrollspeed: '100',
|
|
background: "#cdcdcd",
|
|
cursoropacitymax: "0.6",
|
|
cursorborderradius: "0"
|
|
});
|
|
|
|
$(".scrollable-nice").getNiceScroll().resize();
|
|
|
|
});
|