I used this plugin https://github.com/noraesae/perfect-scrollbar and there is minScrollbarLength
but I wana set maxScrollbarLength
but I low in programing and i dont know where i can change this option so I ask for help.
my code in index
<script>
jQuery(document).ready(function ($) {
"use strict";
$('#Default').perfectScrollbar({
suppressScrollY: true,
useBothWheelAxes: true,
minScrollbarLength: 300,
//and here i wana set maxScrollbarLength
});
$( ".ps-scrollbar-x" ).append( "<p>Drag This</p>" );
});
</script>