(function($){
$(window).load(function(){
$("#content_1").mCustomScrollbar({
scrollButtons: {
enable: true
},
theme: "dark",
horizontalScroll: true,
advanced: { updateOnContentResize: true, updateOnBrowserResize: true }
});
});
})(jQuery);
I'm using the above code to show both horizontal and vertical scrollbars in same content, however, only the horizontal scrollbar appears. How can I force both scrollbars to be shown?